sort function

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

Implementation

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