|
Scala Library
|
|
scala/collection/SortedMap.scala]
trait
SortedMap[K, +E]
extends Map[K, E] with Sorted[K, (K, E)]| Method Summary | |
override def
|
firstKey
: K
Returns the first key of the collection.
|
override def
|
from
(from : K) : SortedMap[K, E]
Creates a ranged projection of this collection with no upper-bound.
|
override def
|
keySet
: SortedSet[K]
return as a projection the set of keys in this collection
|
override def
|
lastKey
: K
Returns the last key of the collection.
|
override def
|
range
(from : K, until : K) : SortedMap[K, E]
Creates a ranged projection of this collection with both a lower-bound
and an upper-bound.
|
override abstract def
|
rangeImpl
(from : Option[K], until : Option[K]) : SortedMap[K, E]
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.
|
override def
|
until
(until : K) : SortedMap[K, E]
Creates a ranged projection of this collection with no lower-bound.
|
| Methods inherited from Sorted | |
| to, hasAll |
| Methods inherited from Map | |
| size (abstract), get (abstract), getOrElse, isEmpty, apply, contains, isDefinedAt, keys, values, equals, hashCode, toString, default, projection, filterKeys, mapElements, stringPrefix |
| Methods inherited from Collection | |
| toArray |
| Methods inherited from Iterable | |
| elements (abstract), 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 PartialFunction | |
| orElse, andThen |
| Methods inherited from Function1 | |
| compose |
| Methods inherited from AnyRef | |
| getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Methods inherited from Ranged | |
| compare (abstract) |
| Class Summary | |
protected class
|
DefaultKeySet
extends SortedSet[K]
|
| Method Details |
override
def
firstKey : K
override
def
lastKey : K
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.from - The lower-bound (inclusive) of the ranged projection.until - The upper-bound (exclusive) of the ranged projection.from - The upper-bound (exclusive) of the ranged projection.until - ...|
Scala Library
|
|