Expand description
Collection of utility methods and functions that take an owned array and return a sorted owned array.
Traits§
- Into
Sorted - Utility methods to sort various types of arrays with a stable algorithm (requires allocation).
- Into
Unstable Sorted - Utility methods to sort various types of arrays with an unstable algorithm.
Functions§
- into_
sorted - Sort an array by
Ordand 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
Ordand 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.