argsort function

VARP argsort(
  1. VARP x, {
  2. int axis = -1,
  3. bool descend = false,
})

Implementation

VARP argsort(VARP x, {int axis = -1, bool descend = false}) =>
    F.sort(x, axis: axis, arg: true, descend: descend);