IntSet

TODO add interface description

Members

Functions

add
void add(int el)

@uml Adds the specified value to the current set.

addAll
IntSet addAll(IntSet set)

@uml Modify the current {@link IntSet} object to contain all elements that are present in itself, the specified {@code set}, or both.

and
IntSet and(IntSet a)

@uml Return a new {@link IntSet} object containing all elements that are present in both the current set and the specified set {@code a}.

complement
IntSet complement(IntSet elements)
Undocumented in source.
contains
bool contains(int el)
Undocumented in source.
getSingleElement
int getSingleElement()
Undocumented in source.
isNil
bool isNil()
Undocumented in source.
opEquals
bool opEquals(Object obj)
Undocumented in source.
or
IntSet or(IntSet a)
Undocumented in source.
remove
void remove(int el)
Undocumented in source.
subtract
IntSet subtract(IntSet a)
Undocumented in source.
toList
int[] toList()
Undocumented in source.
toString
string toString()
Undocumented in source.

Meta