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