|
Scala Library
|
|
scala/collection/Iterator.scala]
class
IteratorIteratorOps[A](its : Iterator[Iterator[A]])
extends AnyRefflatten method that is added to
class Iterator with implicit conversion| 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 |
|
Scala Library
|
|