Methods Summary |
---|
public void | add(int value)Adds an int to a set
|
public int | elements()Returns the count of unique elements in this set.
|
public boolean | has(int value)Checks to see if a value is in the set
|
public IntIterator | iterator()Iterates the set
|
public void | merge(com.android.dx.util.IntSet other)Merges {@code other} into this set, so this set becomes the
union of the two.
|
public void | remove(int value)Removes an int from a set.
|