core/slice/sort/
mod.rs

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`.
3
4pub mod stable;
5pub mod unstable;
6
7pub(crate) mod select;
8pub(crate) mod shared;