Module interval_tree

Module interval_tree 

Source
Expand description

According to Wikipedia:

An interval tree is a tree data structure to hold intervals. Specifically, it allows one to efficiently find all intervals that overlap with any given interval or point.

Structs§

InorderIterator
Interval
Structure to represent an interval.
IntervalTree
An Interval Tree.
IntervalTreeEntry

Traits§

IntervalType
A marker trait for interval types. Default implemented for standard integral and floating-point types.