#iterator #slice #ord #partial-ord #float

no-std ord_subset

Tools for working with the Ord subset of certain PartialOrd types, like floats

8 stable releases

Uses old Rust 2015

3.1.1 Sep 10, 2018
3.1.0 Nov 26, 2017
3.0.0 Oct 20, 2017
2.1.0 Sep 23, 2017
1.0.0 Aug 23, 2015

#639 in Algorithms

Download history 29855/week @ 2023-06-09 25324/week @ 2023-06-16 25441/week @ 2023-06-23 20467/week @ 2023-06-30 25366/week @ 2023-07-07 13160/week @ 2023-07-14 22063/week @ 2023-07-21 27413/week @ 2023-07-28 37354/week @ 2023-08-04 44571/week @ 2023-08-11 40087/week @ 2023-08-18 49302/week @ 2023-08-25 27476/week @ 2023-09-01 28200/week @ 2023-09-08 40889/week @ 2023-09-15 50429/week @ 2023-09-22

157,064 downloads per month
Used in 20 crates (5 directly)

MIT/Apache

41KB
841 lines

ord_subset Build Status

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

Documentation is up at https://docs.rs/ord_subset/.

Usage

Add this to your Cargo.toml:

[dependencies]
ord_subset = "3"
extern crate ord_subset;
use ord_subset::{OrdSubsetIterExt, OrdSubsetSliceExt};

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

  // iterators
  assert_eq!( s.iter().ord_subset_max(), Some(&5.0) );
  assert_eq!( s.iter().ord_subset_min(), 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.

No runtime deps

Features