summaryrefslogtreecommitdiff
path: root/test/files/run/flat-flat-flat.scala
Commit message (Collapse)AuthorAgeFilesLines
* Even after the mostly blissful marriage of Trav...Paul Phillips2010-12-311-0/+11
Even after the mostly blissful marriage of Traversable and Iterator there was some fussin' and fightin' over who should have to care for Option. Now there is peace among the collections once again. // before scala> Iterator(Some(1), None).flatten <console>:6: error: value flatten is not a member of Iterator[Option[Int]] // after scala> Iterator(Some(1), None).flatten res0: Iterator[Int] = non-empty iterator Review by moors.