into_sorted/
lib.rs

1//! Collection of utility methods and functions that take an owned array and return a sorted owned array.
2
3#![no_std]
4
5#[cfg(feature = "alloc")]
6mod stable;
7#[cfg(feature = "alloc")]
8pub use stable::*;
9
10mod unstable;
11pub use unstable::*;
12
13mod sealed;