sort function

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

Implementation

VARP sort(VARP x, {int axis = -1, bool arg = false, bool descend = false}) =>
    VARP.fromPointer(C.mnn_expr_Sort(x.ptr, axis, arg, descend));