|
Scala 2.3.1
|
abstract
trait
Set
[A]
extends
java.lang.Object
with
(A) => scala.Boolean
with
scala.Iterable[A]
with
scala.ScalaObject
Set
may only be used for
accessing elements from set implementations. Two different extensions
of class Set
in the package
scala.collection.mutable
and
scala.collection.immutable
provide functionality for
adding new elements to a set. The class in the first package is implemented
by sets the are modified destructively, whereas the class in the second
package is used by functional set implementations that rely on immutable
data structures.Def Summary | |
def
apply
(elem: A)
: scala.Boolean
This method allows sets to be interpreted as predicates. It returns true, iff this set contains element elem .
|
|
abstract
|
def
contains
(elem: A)
: scala.Boolean
Checks if this set contains element elem .
|
override
|
def
equals
(that: scala.Any)
: scala.Boolean
Compares this set with another object and returns true, iff the other object is also a set which contains the same elements as this set. |
def
isEmpty
: scala.Boolean
Checks if this set is empty. |
|
abstract
|
def
size
: scala.Int
Returns the number of elements in this set. |
def
subsetOf
(that: scala.collection.Set[A])
: scala.Boolean
Checks if this set is a subset of set that .
|
|
override
|
def
toString
: java.lang.String
Returns a string representation of this set. |
Def inherited from (A) => scala.Boolean | |
andThen , apply, compose, toString |
Def inherited from scala.Iterable[A] | |
/: , :\, concat, elements, exists, find, findIndexOf, foldLeft, foldRight, forall, foreach, indexOf, sameElements, toList |
Def Detail |
def
apply
(elem: A): scala.Boolean
elem
.elem -
the element to check for membership.
true
iff elem
is contained in this set.
abstract
def
contains
(elem: A): scala.Boolean
elem
.elem -
the element to check for membership.
true
iff elem
is contained ini this set.
override
def
equals
(that: scala.Any): scala.Boolean
that -
the other object
true
iff this set and the other set contain the same elements.
def
isEmpty
: scala.Boolean
true
iff there is no element in the set.
abstract
def
size
: scala.Int
def
subsetOf
(that: scala.collection.Set[A]): scala.Boolean
that
.that -
another set.
true
iff the other set is a superset of this set.
override
def
toString
: java.lang.String