1//! This module and the contained sub-modules contains the code for efficient and robust sort
2//! implementations, as well as the domain adjacent implementation of `select_nth_unstable`.
34pub mod stable;
5pub mod unstable;
67pub(crate) mod select;
8pub(crate) mod shared;