Scala Library Documentation
|
|
trait
CollectionWrapper[A]
extends
Collection[A] with
IterableWrapper[A]Method Summary | |
override def
|
add
(a : A) : Boolean
Adds "a" to the collection, return true if "a" is actually added.
|
override def
|
addAll
(that : Iterable[A]) : Boolean
Adds all elements in "i" to the collection, return true if any elements are added.
|
override def
|
elements
: MutableIterator[A]
Creates a new iterator over all elements contained in this
object.
|
override def
|
equals (that : Any) : Boolean |
override def
|
has (a : A) : Boolean |
override def
|
hasAll
(that : Iterable[A]) : Boolean
Type-safe version of containsAll.
*
* @author Sean McDirmid
|
override def
|
hashCode : Int |
override def
|
toString : String |
protected abstract def
|
underlying
: Collection
Override to specify the collection being accessed through this wrapper.
* Collection operations are then routed through the wrapped Java collection.
|
final def
|
underlying0 : Collection |
Methods inherited from IterableWrapper | |
remove, removeAll, retainAll, isEmpty, clear |
Methods inherited from Collection | |
transform (abstract), ++, -=, +=, +, projection |
Methods inherited from MutableIterable | |
--, -, retain, size0 |
Methods inherited from Collection | |
size (abstract), toArray, stringPrefix |
Methods inherited from Iterable | |
concat, ++, map, flatMap, filter, takeWhile, dropWhile, take, drop, foreach, forall, exists, find, findIndexOf, indexOf, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, copyToBuffer, sameElements, toList, mkString, mkString, addString, addString, copyToArray, hasDefiniteSize |
Methods inherited from AnyRef | |
getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
protected abstract
def
underlying : Collection
final
def
underlying0 : Collection
override
def
elements : MutableIterator[A]
override
def
toString : String
override
def
hashCode : Int
Scala Library Documentation
|
|