scala.collection.Iterator

class IteratorIteratorOps

[source: scala/collection/Iterator.scala]

class IteratorIteratorOps[A](its : Iterator[Iterator[A]])
extends AnyRef
A wrapper class for the `flatten `method that is added to class Iterator with implicit conversion @see iteratorIteratorWrapper.
Method Summary
def flatten : Iterator[A]
If `its` is an iterator of iterators, `its.flatten` gives the iterator that is the concatenation of all iterators in `its`.
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def flatten : Iterator[A]
If `its` is an iterator of iterators, `its.flatten` gives the iterator that is the concatenation of all iterators in `its`.