segment-map 0.1.1

A self-balancing binary search tree for mapping discrete, disjoint segments to values.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod segment;
mod segment_map_node;
mod segment_map;
mod bounded;
mod next;

pub use crate::segment_map::{
    SegmentMap,
    Segments,
    Values,
    ValuesMut,
    Iter,
    IterMut,
    IntoIter,
};
pub use crate::segment::Segment;
pub use crate::bounded::Bounded;
pub use crate::next::Next;