1//! Collection of utility methods and functions that take an owned array and return a sorted owned array.
23#![no_std]
45#[cfg(feature = "alloc")]
6mod stable;
7#[cfg(feature = "alloc")]
8pub use stable::*;
910mod unstable;
11pub use unstable::*;
1213mod sealed;