Scala Library
|
|
scala/collection/mutable/MapProxy.scala
]
trait
MapProxy[A, B]
extends
Map[A, B] with
MapProxy[A, B]
This is a simple wrapper class for scala.collection.mutable.Map
.
It is most useful for assembling customized map abstractions dynamically using object composition and forwarding.
Method Summary | |
override def
|
+
(kv1 : (A, B), kv2 : (A, B), kvs : (A, B)*) : Map[A, B]
Add two or more key/value pairs to this map.
|
override def
|
+
(kv : (A, B)) : Map[A, B]
Add a key/value pair to this map.
|
override def
|
++
(kvs : Iterator[(A, B)]) : Map[A, B]
Add a sequence of key/value pairs to this map.
|
override def
|
++
(kvs : Iterable[(A, B)]) : Map[A, B]
Add a sequence of key/value pairs to this map.
|
override def
|
++=
(kvs : Iterable[(A, B)]) : Unit
Add a sequence of key/value pairs to this map.
|
override def
|
++=
(kvs : Iterator[(A, B)]) : Unit
Add a sequence of key/value pairs to this map.
|
override def
|
+=
(kv : (A, B)) : Unit
Add a key/value pair to this map.
|
override def
|
+=
(kv1 : (A, B), kv2 : (A, B), kvs : (A, B)*) : Unit
Add two or more key/value pairs to this map.
|
override def
|
-
(key1 : A, key2 : A, keys : A*) : Map[A, B]
Remove two or more keys from this map
|
override def
|
-
(key : A) : Map[A, B]
Remove a key from this map
|
override def
|
--
(keys : Iterable[A]) : Map[A, B]
Remove a sequence of keys from this map
|
override def
|
--
(keys : Iterator[A]) : Map[A, B]
Remove a sequence of keys from this map
|
override def
|
--=
(keys : Iterator[A]) : Unit
Remove a sequence of keys from this map
|
override def
|
--=
(keys : Iterable[A]) : Unit
Remove a sequence of keys from this map
|
override def
|
-=
(key : A) : Unit
Remove a key from this map, noop if key is not present.
|
override def
|
-=
(key1 : A, key2 : A, keys : A*) : Unit
Remove two or more keys from this map
|
override def
|
<<
(cmd : Message[(A, B)]) : Unit
Send a message to this scriptable object.
|
override def
|
clear
: Unit
Removes all mappings from the map. After this operation is
completed, the map is empty.
|
override def
|
clone
: Map[A, B]
Return a clone of this map.
|
override def
|
excl
(keys : A*) : Unit
This method will remove all the mappings for the given sequence
of keys from the map.
|
override def
|
incl
(mappings : (A, B)*) : Unit
incl can be used to add many mappings at the same time
to the map. The method assumes that a mapping is represented
by a Pair object who's first component denotes the
key, and who's second component refers to the value. |
override def
|
retain
(p : (A, B) => Boolean) : Unit
This method retains only those mappings for which the predicate
p returns true . |
abstract def
|
self : Map[A, B] |
override def
|
transform
(f : (A, B) => B) : Unit
This function transforms all the values of mappings contained
in this map with function
f . |
override def
|
update
(key : A, value : B) : Unit
This method allows one to add a new mapping from
key
to value to the map. If the map already contains a
mapping for key , it will be overridden by this
function. |
Methods inherited from MapProxy | |
size, get, getOrElse, isEmpty, apply, contains, isDefinedAt, keys, keySet, values, equals, hashCode, toString, default, projection, filterKeys, mapElements |
Methods inherited from CollectionProxy | |
toArray |
Methods inherited from IterableProxy | |
elements, concat, ++, map, flatMap, filter, partition, takeWhile, 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 Map | |
removeKey, put, getOrElseUpdate, readOnly, += |
Methods inherited from Map | |
stringPrefix |
Methods inherited from PartialFunction | |
orElse, andThen |
Methods inherited from Function1 | |
compose |
Methods inherited from AnyRef | |
getClass, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
key
to value
to the map. If the map already contains a
mapping for key
, it will be overridden by this
function.key -
The key to updatevalue -
The new valuekv -
the key/value pair.kv1 -
the first key/value pair.kv2 -
the second key/value pair.kvs -
the remaining key/value pairs.kvs -
the iterable object containing all key/value pairs.kvs -
the iterator containing all key/value pairs.kv -
the key/value pair.kv1 -
the first key/value pair.kv2 -
the second key/value pair.kvs -
the remaining key/value pairs.kvs -
the iterable object containing all key/value pairs.kvs -
the iterator containing all key/value pairs.key -
the key to be removedkey1 -
the first key to be removedkey2 -
the second key to be removedkeys -
the remaining keys to be removedkeys -
the keys to be removedkeys -
the keys to be removedkey -
the key to be removedkey
removed if it existed.key1 -
the first key to be removedkey2 -
the second key to be removedkeys -
the remaining keys to be removedkeys -
the keys to be removedkeys
removed.keys -
the keys to be removedkeys
removed.override
def
clear : Unit
f
.f -
The transformation to applyp
returns true
.p -
The test predicatecmd -
the message to send.override
def
incl(mappings : (A, B)*) : Unit
incl
can be used to add many mappings at the same time
to the map. The method assumes that a mapping is represented
by a Pair
object who's first component denotes the
key, and who's second component refers to the value.mappings -
+=
override
def
excl(keys : A*) : Unit
keys -
-=
Scala Library
|
|