| 337 | } |
| 338 | |
| 339 | Result<std::shared_ptr<Array>> SortIndices(const Array& values, SortOrder order, |
| 340 | ExecContext* ctx) { |
| 341 | ArraySortOptions options(order); |
| 342 | ARROW_ASSIGN_OR_RAISE( |
| 343 | Datum result, CallFunction("array_sort_indices", {Datum(values)}, &options, ctx)); |
| 344 | return result.make_array(); |
| 345 | } |
| 346 |