Module sort
This module and the contained sub-modules contains the code for efficient and robust sort
implementations, as well as the domain adjacent implementation of select_nth_unstable.
Modules
-
select
This module contains the implementation for
slice::select_nth_unstable. It uses an introselect algorithm based on ipnsort by Lukas Bergdoll and Orson Peters, published at: https://github.com/Voultapher/sort-research-rs/tree/main/ipnsort - shared
-
stable
This module contains the entry points for
slice::sort. -
unstable
This module contains the entry points for
slice::sort_unstable.