Expand description
Collection of utility methods and functions that take an owned array and return a sorted owned array.
Features:
alloc
: Provides stable sorting functions and methods which require allocations. This feature is enabled by default.
Modules§
Traits§
- Into
Sorted - Utility methods to sort various types of arrays with a stable algorithm (requires allocation).
- Into
Sorted Unstable - Utility methods to sort various types of arrays with an unstable algorithm.
Functions§
- into_
sorted - Sort an array by
Ord
and return it. - into_
sorted_ by - Sort an array by a function and return it.
- into_
sorted_ by_ cached_ key - Sort an array by a key extraction function (which would be called at most once per element) and return it.
- into_
sorted_ by_ key - Sort an array by a key extraction function and return it.
- into_
sorted_ unstable - Sort an array by
Ord
and return it. - into_
sorted_ unstable_ by - Sort an array by a function and return it.
- into_
sorted_ unstable_ by_ key - Sort an array by a key extraction function and return it.