5 unstable releases

0.3.2 Oct 5, 2023
0.3.1 Jul 1, 2023
0.3.0 May 13, 2022
0.2.1 Jul 1, 2023
0.1.0 May 12, 2022

#1415 in Data structures

Download history 538/week @ 2023-12-12 423/week @ 2023-12-19 261/week @ 2023-12-26 71/week @ 2024-01-02 62/week @ 2024-01-09 53/week @ 2024-01-16 167/week @ 2024-01-23 177/week @ 2024-01-30 156/week @ 2024-02-06 311/week @ 2024-02-13 262/week @ 2024-02-20 550/week @ 2024-02-27 294/week @ 2024-03-05 452/week @ 2024-03-12 430/week @ 2024-03-19 202/week @ 2024-03-26

1,434 downloads per month
Used in 24 crates (via btree-range-map)

MIT/Apache

17KB
415 lines

Range traits

Build Crate informations License Documentation

This library provides utility traits for data types that can be used to define ranges of values. Default implementations exists for primitive numeric types and char. The defined traits can help define basic tasks on ranges such as enumerating the elements of the range (PartialEnum), measure the size of the range (Measure), etc.

Its primary use is through the btree-range-map crate that define data-structures indexed by ranges. By implementing the traits defined in here, one can extend the type of ranges supported by btree-range-map, without necessarily depending on it.

License

Licensed under either of

at your option.

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.

Dependencies

~46KB