|
Scala Library
|
|
scala/collection/jcl/Map.scala]
trait
Projection[K, E]
extends MutableIterableProjection[(K, E)] with Projection[K, E] with Map[K, E]| Method Summary | |
override def
|
map
[B](f : ((K, E)) => B) : Projection[B]
non-strict
|
override def
|
projection
: Projection[K, E]
returns a projection that can be used to call non-strict
filter,
map, and flatMap methods that build projections
of the collection. |
| Methods inherited from Map | |
| elements (abstract), clear, isEmpty, keySet, keys, valueSet, put, ++=, removeKey, has, get, update, +, +=, -, remove, -=, lense, filterKeys |
| Methods inherited from Map | |
| +=, ++=, +, ++, ++, -=, --=, --=, -, --, --, getOrElseUpdate, transform, retain, <<, clone, readOnly, +=, incl, excl |
| Methods inherited from Map | |
| size (abstract), getOrElse, apply, contains, isDefinedAt, values, equals, hashCode, toString, default, mapElements, stringPrefix |
| Methods inherited from PartialFunction | |
| orElse, andThen |
| Methods inherited from Function1 | |
| compose |
| Methods inherited from Projection | |
| filter |
| Methods inherited from Projection | |
| force, flatMap, takeWhile, append |
| Methods inherited from MutableIterable | |
| removeAll, --, -, retainOnly, retainAll, size0 |
| Methods inherited from Collection | |
| toArray |
| Methods inherited from Iterable | |
| concat, ++, partition, dropWhile, take, drop, foreach, forall, exists, find, findIndexOf, indexOf, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, copyToBuffer, sameElements, toList, toSeq, toStream, mkString, mkString, mkString, addString, addString, addString, copyToArray, hasDefiniteSize |
| Methods inherited from AnyRef | |
| getClass, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
override
def
projection : Projection[K, E]
filter,
map, and flatMap methods that build projections
of the collection.override
def
map[B](f : ((K, E)) => B) : Projection[B]
|
Scala Library
|
|