scala.collection.jcl.SortedSetWrapper

class Range

[source: scala/collection/jcl/SortedSetWrapper.scala]

protected class Range(from : Option[A], until : Option[A])
extends Range with SortedSetWrapper[A]
Value Summary
val underlying : java.util.SortedSet[A]
Override to specify the collection being accessed through this wrapper. * Collection operations are then routed through the wrapped Java collection.
Method Summary
override def elements : MutableIterator[A]
The default implementation of a map over mutable iterable collections.
Methods inherited from SortedSetWrapper
compare, firstKey, lastKey, rangeImpl, toString
Methods inherited from SetWrapper
isEmpty, clear, size
Methods inherited from CollectionWrapper
has, hasAll, add, addAll, hashCode, equals
Methods inherited from IterableWrapper
remove, removeAll, retainAll
Methods inherited from Filter
p, filter
Methods inherited from Projection
projection
Methods inherited from SortedSet
keySet, subsetOf
Methods inherited from Sorted
to
Methods inherited from Ranged
from, until, range
Methods inherited from Sorted
hasAll
Methods inherited from Filter
retainOnly
Methods inherited from Set
contains, ++, --, +, -, retain, transform
Methods inherited from Set
update, +=, ++=, ++=, +, ++, incl, -=, --=, --=, -, --, excl, intersect, <<, clone, readOnly
Methods inherited from Set
apply, *, **, toArray, stringPrefix
Methods inherited from Function1
compose, andThen
Methods inherited from Collection
-=, +=
Methods inherited from Projection
map
Methods inherited from Projection
force, flatMap, takeWhile, append
Methods inherited from MutableIterable
size0
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
Value Details
val underlying : java.util.SortedSet[A]
Override to specify the collection being accessed through this wrapper. * Collection operations are then routed through the wrapped Java collection.
Overrides
SortedSetWrapper.underlying

Method Details
override def elements : MutableIterator[A]
The default implementation of a map over mutable iterable collections.