|
Scala Library Documentation
|
|
trait
Projection
extends Projection with Projection| Method Summary | |
override def
|
filter
(p0 : (A) => Boolean) : SortedSet[A]
Returns all the elements of this iterable that satisfy the
predicate
p. The order of the elements is preserved.
Unlike filter in Iterable, this API is
not strict and will terminate on infinite-sized collections. |
| Methods inherited from Projection | |
| map |
| Methods inherited from Projection | |
| flatMap |
| 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 |
p. The order of the elements is preserved.
Unlike filter in Iterable, this API is
not strict and will terminate on infinite-sized collections.p - the predicate used to filter the list.p.|
Scala Library Documentation
|
|