#ord #partial-ord #reverse #wrapper-type

uncheck-ord

Wrapper type to easily convert Ord to PartialOrd. inspired by std::cmp::Reverse

1 unstable release

0.1.0 Feb 17, 2021

#2186 in Rust patterns

MIT/Apache

3KB

unwrap-ord

Crates.io

Wrapper type to easily convert Ord to PartialOrd. inspired by std::cmp::Reverse

How to use

Add your Cargo.toml

unwrap-ord = "0.1.0"
use unwrap_ord::UnwrapOrd;

fn main() {
    let v = [1.0, 3.0, 2.0];
    let mut v: Vec<_> = v.iter().copied().map(|x| UnwrapOrd(x)).collect();

    v.sort();

    println!("{:?}", v);  // [UncheckOrd(1.0), UncheckOrd(2.0), UncheckOrd(3.0)]
}

No runtime deps