range-set-blaze 0.1.16

Integer sets as fast, sorted, integer ranges with full set operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! 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::{
    intersection_dyn, union_dyn, AssumeSortedStarts, CheckSortedDisjoint, DynSortedDisjoint,
    MultiwayRangeSetBlaze, MultiwayRangeSetBlazeRef, MultiwaySortedDisjoint, RangeSetBlaze,
    SortedDisjoint, SortedStarts,
};