pub trait SortedStartsMap<T, VR>: Iterator<Item = (RangeInclusive<T>, VR)> + FusedIterator{ }Expand description
Used internally. Marks iterators that provide (range, value) pairs that are sorted by the range’s start, but
that are not necessarily disjoint.