Scala Library Documentation
|
|
scala/collection/jcl/Map.scala
]
trait
Projection
extends
MutableIterableProjection with
ProjectionMethod Summary | |
override def
|
filterKeys
(p : (K) => Boolean) : Map[K, E]
filter based on keys only
|
override def
|
map
[B](f : ((K, E)) => 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 | |
mapElements |
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 : ((K, E)) => 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
|
|