Class Subspace :: sus :: iter :: Flatten
An iterator that flattens an iterator of iterable types into an iterator of those iterable types' items.
In other words, this type maps Iterator[Iterable[T]]
into Iterator[T]
.
This type is returned from Iterator::flatten()
.
Methods
sus::iter::Iterator trait.