Returns the first key of the collection.
return as a projection the set of keys in this collection
Creates an iterator over all the keys(or elements) contained in this
collection greater than or equal to start
according to the ordering of this collection.
Creates an iterator over all the keys(or elements) contained in this
collection greater than or equal to start
according to the ordering of this collection. x.keysIteratorFrom(y)
is equivalent to but often more efficient than
x.from(y).keysIterator.
The lower bound (inclusive) on the keys to be returned
Returns the last key of the collection.
Creates a ranged projection of this collection.
Creates a ranged projection of this collection. Any mutations in the ranged projection will update this collection and vice versa.
Note: keys are not guaranteed to be consistent between this collection and the projection. This is the case for buffers where indexing is relative to the projection.
The lower-bound (inclusive) of the ranged projection.
None
if there is no lower bound.
The upper-bound (exclusive) of the ranged projection.
None
if there is no upper bound.
The current collection
The current collection
Comparison function that orders keys.
Creates a ranged projection of this collection with no upper-bound.
Creates a ranged projection of this collection with no upper-bound.
The lower-bound (inclusive) of the ranged projection.
Creates a ranged projection of this collection with both a lower-bound and an upper-bound.
Creates a ranged projection of this collection with both a lower-bound and an upper-bound.
The lower-bound (inclusive) of the ranged projection.
The upper-bound (exclusive) of the ranged projection.
Create a range projection of this collection with no lower-bound.
Create a range projection of this collection with no lower-bound.
The upper-bound (inclusive) of the ranged projection.
Creates a ranged projection of this collection with no lower-bound.
Creates a ranged projection of this collection with no lower-bound.
The upper-bound (exclusive) of the ranged projection.
Any collection (including maps) whose keys (or elements) are ordered.
2.8