|
Scala Library
|
|
scala/collection/immutable/ListSet.scala]
class
ListSet[A]
extends Set[A]ListSet represent
empty sets; they can be either created by calling the constructor
directly, or by applying the function ListSet.empty.| Method Summary | |
def
|
+
(elem : A) : ListSet[A]
This method creates a new set with an additional element.
|
def
|
-
(elem : A) : ListSet[A]
- can be used to remove a single element from
a set. |
def
|
contains
(elem : A) : Boolean
Checks if this set contains element
elem. |
protected def
|
elem : A |
def
|
elements
: Iterator[A]
Creates a new iterator over all elements contained in this set.
|
def
|
empty [B] : ListSet[B] |
override def
|
equals
(obj : Any) : Boolean
Compares two sets for equality.
Two set are equal iff they contain the same elements.
|
override def
|
isEmpty
: Boolean
Checks if this set is empty.
|
protected def
|
next : ListSet[A] |
def
|
size
: Int
Returns the number of elements in this set.
|
| Methods inherited from Set | |
| +, ++, ++, incl, incl, -, --, --, excl, excl, intersect, **, map, flatMap, filter |
| Methods inherited from Set | |
| apply, subsetOf, *, hashCode, toArray, stringPrefix |
| Methods inherited from Collection | |
| toString |
| Methods inherited from Iterable | |
| concat, ++, 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, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Class Summary | |
protected class
|
Node
(protected val override elem : A) extends ListSet[A]
|
| Method Details |
def
size : Int
override
def
isEmpty : Boolean
true iff there is no element in the set.elem.elem - the element to check for membership.elem is contained in this set.- can be used to remove a single element from
a set.protected
def
elem : A
|
Scala Library
|
|