|
Scala Library
|
|
trait
IterableWrapper[A]
extends MutableIterable[A]| Method Summary | |
override def
|
clear
: Unit
clear all elements from the collection.
|
override def
|
elements
: MutableIterator[A]
The default implementation of a map over mutable iterable collections.
|
override def
|
isEmpty
: Boolean
Is this collection empty?
|
override def
|
remove (a : A) : Boolean |
override def
|
removeAll (that : Iterable[A]) : Boolean |
override def
|
retainAll
(that : Iterable[A]) : Boolean
retain only elements that are also in that.
|
override def
|
size
: Int
Returns the number of elements in this collection.
|
abstract def
|
underlying : java.util.Collection[A] |
| Methods inherited from MutableIterable | |
| has, --, -, retainOnly, size0, projection |
| Methods inherited from Collection | |
| toArray, toString, stringPrefix |
| Methods inherited from Iterable | |
| 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 AnyRef | |
| getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
abstract
def
underlying : java.util.Collection[A]
override
def
size : Int
override
def
isEmpty : Boolean
override
def
clear : Unit
override
def
elements : MutableIterator[A]
|
Scala Library
|
|