Scala Library
|
|
scala/collection/mutable/Set.scala
]
trait
Set[A]
extends
Set[A] with
Scriptable[Message[A]] with
CloneableCollectionscala.collection.Set
as well as for +=
,
-= and clear
.
Method Summary | |
def
|
+
(elem : A) : Set[A]
Add a new element to the set.
|
def
|
+
(elem1 : A, elem2 : A, elems : A*) : Set[A]
Add two or more elements to this set.
|
def
|
++
(elems : Iterator[A]) : Set[A]
Add all the elements provided by an iterator
elems to the set. |
def
|
++
(elems : Iterable[A]) : Set[A]
Add all the elements provided by an iterator
of the iterable object
elems to the set. |
def
|
++=
(elems : Iterator[A]) : Unit
Add all the elements provided by an iterator
elems to the set. |
def
|
++=
(elems : Iterable[A]) : Unit
Add all the elements provided by an iterator
of the iterable object
that to the set. |
def
|
+=
(elem1 : A, elem2 : A, elems : A*) : Unit
Add two or more elements to this set.
|
abstract def
|
+=
(elem : A) : Unit
Add a new element to the set.
|
def
|
-
(elem1 : A, elem2 : A, elems : A*) : Set[A]
Remove two or more elements from this set.
|
def
|
-
(elem : A) : Set[A]
Remove a new element from the set.
|
def
|
--
(elems : Iterable[A]) : Set[A]
Remove all the elements provided by an iterator
of the iterable object
elems from the set. |
def
|
--
(elems : Iterator[A]) : Set[A]
Remove all the elements provided by an iterator
elems from the set. |
def
|
--=
(elems : Iterator[A]) : Unit
Remove all the elements provided by an iterator
elems from the set. |
def
|
--=
(elems : Iterable[A]) : Unit
Remove all the elements provided by an iterator
of the iterable object
elems from the set. |
def
|
-=
(elem1 : A, elem2 : A, elems : A*) : Unit
Remove two or more elements from this set.
|
abstract def
|
-=
(elem : A) : Unit
Removes a single element from a set.
|
def
|
<<
(cmd : Message[A]) : Unit
Send a message to this scriptable object.
|
def
|
clear
: Unit
Removes all elements from the set. After this operation is completed,
the set will be empty.
|
override def
|
clone
: Set[A]
Return a clone of this set.
|
def
|
excl
(elems : A*) : Unit
excl removes many elements from the set. |
def
|
incl
(elems : A*) : Unit
incl can be used to add many elements to the set
at the same time. |
def
|
intersect
(that : Set[A]) : Unit
This method computes an intersection with set
that .
It removes all the elements that are not present in that . |
def
|
readOnly
: Set[A]
Return a read-only projection of this set
|
def
|
retain
(p : (A) => Boolean) : Unit
Method
retain removes all elements from the set for
which the predicate |
def
|
update
(elem : A, included : Boolean) : Unit
This method allows one to add or remove an element
elem
from this set depending on the value of parameter included .
Typically, one would use the following syntax:
set(elem) = true |
Methods inherited from Set | |
size (abstract), contains (abstract), apply, isEmpty, subsetOf, *, **, equals, hashCode, toArray, stringPrefix |
Methods inherited from Collection | |
toString |
Methods inherited from Iterable | |
elements (abstract), 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, projection, hasDefiniteSize |
Methods inherited from Function1 | |
compose, andThen |
Methods inherited from AnyRef | |
getClass, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
elem
from this set depending on the value of parameter included
.
Typically, one would use the following syntax:
set(elem) = true
elem -
the element to be addedelem1 -
the first element.elem2 -
the second element.elems -
the remaining elements.that
to the set.elems -
the iterable object containing the elements to be addedelems
to the set.elems -
the iterator containing the elements to be addedelem -
the element to be addedelem1 -
the first element.kv2 -
the second element.kvs -
the remaining elements.elems
to the set.elems -
the iterable object containing the elements to be addedelems
to the set.elems -
the iterator containing the elements to be added
def
incl(elems : A*) : Unit
incl
can be used to add many elements to the set
at the same time.++=
insteadelem -
The element to be removed.elem1 -
the first element.elem2 -
the second element.elems -
the remaining elements.elems
from the set.elems
from the set.elem -
the element to be removedelem1 -
the first element.elem2 -
the second element.elems -
the remaining elements.elems
from the set.elems -
An iterable object containing the elements to remove from the set.elems
from the set.elems -
An iterator containing the elements to remove from the set.
def
excl(elems : A*) : Unit
excl
removes many elements from the set.that
.
It removes all the elements that are not present in that
.that -
the set to intersect with.retain removes all elements from the set for
which the predicate p
yields the value false
.
def
clear : Unit
cmd -
the message to send.<code>Predef.UnsupportedOperationException</code> -
if the message was not understood.
Scala Library
|
|