Scala Library Documentation
|
|
trait
Projection
extends
ProjectionMethod Summary | |
override def
|
map
[B](f : (A) => B) : MutableIterable[B]
Returns the iterable resulting from applying the given function
f to each element of this iterable. Unlike map
in Iterable , this API is not strict and will terminate on
infinite-sized collections. |
Methods inherited from Projection | |
filter, 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 |
override
def
map[B](f : (A) => B) : MutableIterable[B]
f
to each element of this iterable. Unlike map
in Iterable
, this API is not strict and will terminate on
infinite-sized collections.f -
function to apply to each element.f(a0), ..., f(an)
if this iterable is a0, ..., an
.
Scala Library Documentation
|
|