|
Scala 2.4.0-final
|
abstract
trait
Sorted
[K, A]
extends
java.lang.Object
with
scala.collection.Sorted[K, A]
with
scala.collection.jcl.Ranged[K, A]
with
scala.ScalaObject
Def Summary | |
abstract override
|
def
keySet
: scala.collection.jcl.SortedSet[K]
return as a projection the set of keys in this collection |
abstract override
|
def
rangeImpl
(from: scala.Option[K], until: scala.Option[K])
: Sorted.this.SortedSelf
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. |
final override
|
def
to
(to: K)
: Sorted.this.SortedSelf
Create a range projection of this collection with no lower-bound. * @param to The upper-bound (inclusive) of the ranged projection. |
Def inherited from scala.collection.Sorted[K, A] | |
from , hasAll, keySet, range, rangeImpl, to, until |
Def inherited from scala.collection.jcl.Ranged[K, A] | |
compare , first, from, last, range, rangeImpl, until |
Def Detail |
abstract override
def
keySet
: scala.collection.jcl.SortedSet[K]
abstract override
def
rangeImpl
(from: scala.Option[K], until: scala.Option[K]): Sorted.this.SortedSelf
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.
final override
def
to
(to: K): Sorted.this.SortedSelf