Scala Library
|
|
scala/collection/jcl/SortedMap.scala
]
protected
class
Lense[F](f : (E) => F, g : (F) => E)
extends
Lense[F] with
Projection[K, F]Method Summary | |
def
|
compare
(k0 : K, k1 : K) : Int
Comparison function that orders keys.
|
override def
|
filterKeys
(p : (K) => Boolean) : Projection[K, F]
non-strict filter based on keys only
|
override def
|
lense [G](f0 : (F) => G, g0 : (G) => F) : Projection[K, G] |
override def
|
rangeImpl
(from : Option[K], until : Option[K]) : Projection[K, F]
Creates a ranged projection of this collection. Any mutations in the
ranged projection will update this collection and vice versa. Keys
are garuanteed to be consistent between the collection and its projection.
|
Methods inherited from Projection | |
projection |
Methods inherited from SortedMap | |
firstKey, lastKey, keySet, Range |
Methods inherited from Sorted | |
to |
Methods inherited from Ranged | |
from, until, range |
Methods inherited from Sorted | |
hasAll |
Methods inherited from Lense | |
elements, removeKey, put, get, size |
Methods inherited from Projection | |
map |
Methods inherited from Map | |
clear, isEmpty, keys, valueSet, ++=, has, update, +, +=, -, remove, -= |
Methods inherited from Map | |
+=, ++=, +, ++, ++, -=, --=, --=, -, --, --, getOrElseUpdate, transform, retain, <<, clone, readOnly, +=, incl, excl |
Methods inherited from Map | |
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
filterKeys(p : (K) => Boolean) : Projection[K, F]
from -
The lower-bound (inclusive) of the ranged projection. None
if there is no lower bound.until -
The upper-bound (exclusive) of the ranged projection. None
if there is no upper bound.
Scala Library
|
|