Skip to content

Commit

Permalink
docs: remove reference to sorting implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 authored Jan 12, 2023
1 parent 54ab9f3 commit 86f1c1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions src/awkward/operations/ak_argsort.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@ def argsort(
ascending (bool): If True, the first value in each sorted group
will be smallest, the last value largest; if False, the order
is from largest to smallest.
stable (bool): If True, use a stable sorting algorithm (introsort:
a hybrid of quicksort, heapsort, and insertion sort); if False,
use a sorting algorithm that is not guaranteed to be stable
(heapsort).
stable (bool): If True, use a stable sorting algorithm; if False,
use a sorting algorithm that is not guaranteed to be stable.
highlevel (bool): If True, return an #ak.Array; otherwise, return
a low-level #ak.contents.Content subclass.
behavior (None or dict): Custom #ak.behavior for the output array, if
Expand Down
6 changes: 2 additions & 4 deletions src/awkward/operations/ak_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ def sort(array, axis=-1, *, ascending=True, stable=True, highlevel=True, behavio
ascending (bool): If True, the first value in each sorted group
will be smallest, the last value largest; if False, the order
is from largest to smallest.
stable (bool): If True, use a stable sorting algorithm (introsort:
a hybrid of quicksort, heapsort, and insertion sort); if False,
use a sorting algorithm that is not guaranteed to be stable
(heapsort).
stable (bool): If True, use a stable sorting algorithm; if False,
use a sorting algorithm that is not guaranteed to be stable.
highlevel (bool): If True, return an #ak.Array; otherwise, return
a low-level #ak.contents.Content subclass.
behavior (None or dict): Custom #ak.behavior for the output array, if
Expand Down

0 comments on commit 86f1c1d

Please sign in to comment.