range-set-blaze 0.5.0

Integer sets as fast, sorted integer ranges; Maps with integer-range keys; Full set operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This prelude module provides a convenient way to import the most commonly used
//! types, traits, and functions.
//!
//! ```
//! use range_set_blaze::prelude::*;
//! ```
pub use crate::{
    CheckSortedDisjoint, CheckSortedDisjointMap, DynSortedDisjoint, DynSortedDisjointMap,
    IntoString, MultiwayRangeMapBlaze, MultiwayRangeMapBlazeRef, MultiwayRangeSetBlaze,
    MultiwayRangeSetBlazeRef, MultiwaySortedDisjoint, MultiwaySortedDisjointMap, RangeMapBlaze,
    RangeSetBlaze, SortedDisjoint, SortedDisjointMap, SortedStarts, UIntPlusOne, intersection_dyn,
    intersection_map_dyn, symmetric_difference_dyn, symmetric_difference_map_dyn, union_dyn,
    union_map_dyn,
};