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