Expand description
Module with various iterators over IntervalMap
and IntervalSet
.
Structsยง
- Intervals
- Iterator over intervals
x..y
. - Into
Intervals - Iterator over intervals
x..y
. Takes ownership of the interval map/set. - Into
Iter - Iterator over pairs
(x..y, value)
. Takes ownership of the interval map/set. - Into
Values - Iterator over values. Takes ownership of the interval map/set.
- Iter
- Iterator over pairs
(x..y, &value)
. - IterMut
- Iterator over pairs
(x..y, &mut value)
. - UnsIntervals
- Unsorted iterator over intervals
x..y
. - UnsInto
Intervals - Unsorted IntoIterator over intervals
x..y
. Takes ownership of the interval map/set. - UnsInto
Iter - Unsorted IntoIterator over pairs
(x..y, V)
. Takes ownership of the interval map/set. - UnsInto
Values - Unsorted IntoIterator over intervals
x..y
. Takes ownership of the interval map/set. - UnsIter
- Unsorted iterator over pairs
(x..y, &value)
. - UnsIter
Mut - Unsorted iterator over pairs
(x..y, &mut V)
. - UnsValues
- Unsorted iterator over values
&V
. - UnsValues
Mut - Unsorted iterator over mutable values
&mut V
. - Values
- Iterator over values.
- Values
Exact - Iterator over values
&V
for exact matches with the query. - Values
Exact Mut - Iterator over mutable values
&mut V
for exact matches with the query. - Values
Mut - Iterator over mutable values.