|
Scala Library
|
|
trait
Shrinkable[-A]
extends AnyRef| Method Summary | |
def
|
--=
(iter : Iterator[A]) : Shrinkable[A]
Removes a number of elements provided by an iterator from this collection.
|
def
|
--=
(iter : Traversable[A]) : Shrinkable[A]
Removes a number of elements provided by an iterable object from this collection.
|
def
|
-=
(elem1 : A, elem2 : A, elems : A*) : Shrinkable[A]
Removes two or more elements from this collection.
|
abstract def
|
-=
(elem : A) : Shrinkable[A]
Removes a single element from this collection.
|
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
abstract
def
-=(elem : A) : Shrinkable[A]
elem - the element to remove.
def
-=(elem1 : A, elem2 : A, elems : A*) : Shrinkable[A]
elem1 - the first element to remove.elem2 - the second element to remove.elems - the remaining elements to remove.
def
--=(iter : Iterator[A]) : Shrinkable[A]
iter - the iterator.
def
--=(iter : Traversable[A]) : Shrinkable[A]
iter - the iterable object.|
Scala Library
|
|