7 releases
0.3.3 | Nov 10, 2022 |
---|---|
0.3.2 | Sep 29, 2022 |
0.2.1 | Sep 22, 2022 |
0.1.0 | Sep 14, 2022 |
#1143 in Rust patterns
Used in trait_cast_rs
72KB
1K
SLoC
const_sort_rs
Requirements
This crate requires a nightly compiler.
What can this crate do?
This crate implements the sort_unstable*
functions and as a bonus exposes a const version of sort_internals
.
Check out the ConstSliceSortExt
trait to see all available functions and const examples.
Your types must implement ~const PartialOrd
.
Example
#![feature(const_mut_refs)]
#![feature(const_trait_impl)]
use const_sort_rs::ConstSliceSortExt;
const V: [isize; 5] = {
let mut x = [-5, 4, 1, -3, 2];
x.const_sort_unstable();
x
};
assert_eq!(V, [-5, -3, 1, 2, 4])
Authors
raldone01 and onestacked are the primary authors and maintainers of this library.
License
This project is released under either:
at your choosing.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.