almost_ord

Crate for working with the Ord subset of certain types like f32, f64.

Documentation is up at https://emerentius.github.io/almost_ord.

Usage

Add this to your Cargo.toml: toml [dependencies] almost_ord = "~0.2.0"

```rust extern crate almostord; use almostord::{AlmostOrdIterExt, AlmostOrdSliceExt};

fn main() { // Slices. Works on vector, too. let mut s = [5.0, std::f64::NAN, 3.0, 2.0]; s.partialsort(); asserteq!(&s[0..3], &[2.0, 3.0, 5.0]); asserteq!(s.partialbinary_search(&5.0), Ok(2));

// iterators asserteq!( s.iter().partialmax(), Some(&5.0) ); asserteq!( s.iter().partialmin(), Some(&2.0) ); } ```

License

Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 or the MIT license http://opensource.org/licenses/MIT, at your option. This file may not be copied, modified, or distributed except according to those terms.