it.unimi.dsi.fastutil.ints
Interface IntSet

All Superinterfaces:
Collection, IntCollection, Set
All Known Subinterfaces:
IntSortedSet
All Known Implementing Classes:
AbstractIntSet, IntAVLTreeSet, IntLinkedOpenHashSet, IntOpenHashSet, IntRBTreeSet

public interface IntSet
extends Set, IntCollection

A type-specific Set; provides some additional methods that use polymorphism to reduce type juggling.

See Also:
Set

Method Summary
 boolean remove(int k)
          Note that the corresponding method in IntCollection is IntCollection.rem(int).
 
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntCollection
add, addAll, contains, containsAll, intIterator, rem, removeAll, retainAll, toArray, toIntArray, toIntArray
 

Method Detail

remove

public boolean remove(int k)
Note that the corresponding method in IntCollection is IntCollection.rem(int). This unfortunate situation is caused by the clash with the similarly named index-based method in the List interface.

See Also:
Collection.remove(Object)