class
SetVariable[A] extends SetVar[A]
Instance Constructors
-
new
SetVariable()
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
def
!==(other: Var): Boolean
-
final
def
##(): Int
-
final
def
++=(xs: Iterable[A]): Unit
-
final
def
+=(x: A): Unit
-
final
def
--=(xs: Iterable[A]): Unit
-
final
def
-=(x: A): Unit
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
def
===(other: Var): Boolean
-
def
add(x: A)(implicit d: DiffList): Unit
-
def
addAll(xs: Iterable[A])(implicit d: DiffList): Unit
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
contains(x: A): Boolean
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
exists(f: (A) ⇒ Boolean): Boolean
-
def
finalize(): Unit
-
def
forall(f: (A) ⇒ Boolean): Boolean
-
def
foreach[U](f: (A) ⇒ U): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
def
iterator: Iterator[A]
-
def
map[B](f: (A) ⇒ B): Set[B]
-
def
members: Set[A]
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
printName: String
-
def
remove(x: A)(implicit d: DiffList): Unit
-
def
removeAll(xs: Iterable[A])(implicit d: DiffList): Unit
-
def
size: Int
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
def
value: HashSet[A]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
A variable whose value is a set elements of type A. Internally the values are stored in a scala.collection.mutable.HashSet.