nonoverlapping_interval_tree 0.1.3

Map data structure keyed on (non-overlapping) ranges that allows lookup of a point within a range. Can be no_std (with use of alloc crate).
Documentation
# Non-overlapping Interval Tree

Simple library for a map data structure that contains elements keyed on ranges, whose keys cannot
overlap. Lookup queries can lookup a specific point in a range, and get back the value for that
range.

Docs: [docs.rs](https://docs.rs/nonoverlapping_interval_tree)

This library supports no_std (but requires core and the alloc crate). To enable no_std, disable
default features.