Module iset::iter

source ·
Expand description

Module with various iterators over IntervalMap and IntervalSet.

Structs

  • Iterator over intervals x..y.
  • Iterator over intervals x..y. Takes ownership of the interval map/set.
  • Iterator over pairs (x..y, value). Takes ownership of the interval map/set.
  • Iterator over values. Takes ownership of the interval map/set.
  • Iterator over pairs (x..y, &value).
  • Iterator over pairs (x..y, &mut value).
  • Unsorted iterator over intervals x..y.
  • Unsorted IntoIterator over intervals x..y. Takes ownership of the interval map/set.
  • Unsorted IntoIterator over pairs (x..y, V). Takes ownership of the interval map/set.
  • Unsorted IntoIterator over intervals x..y. Takes ownership of the interval map/set.
  • Unsorted iterator over pairs (x..y, &value).
  • Unsorted iterator over pairs (x..y, &mut V).
  • Unsorted iterator over values &V.
  • Unsorted iterator over mutable values &mut V.
  • Iterator over values.
  • Iterator over values &V for exact matches with the query.
  • Iterator over mutable values &mut V for exact matches with the query.
  • Iterator over mutable values.