Class Subspace :: sus :: iter :: FlatMap
An iterator that maps an iterator of types into an iterator of iterable types through a user-defined function, and then flattens them into an interator of those those iterable types' items.
In other words, this type maps Iterator[X]
into
Iterator[IntoIterable[T]]
into Iterator[T]
.
This type is returned from Iterator::flat_map()
.
Methods
sus::iter::Iterator trait.