mathlib.experimental_sort¶
- mathlib.experimental_sort(items, *, reverse=False)¶
- UtilsStableBetaExperimental
Sort items using an experimental in-place algorithm.
Parameters¶
- itemslist
The list to sort (modified in place).
- reversebool, optional
Sort in descending order. Default is
False.
Returns¶
- list
The sorted list (same object as items).