Package it.unimi.dsi.fastutil.ints
Interface IntSet
- All Superinterfaces:
Collection<Integer>,IntCollection,IntIterable,Iterable<Integer>,Set<Integer>
- All Known Subinterfaces:
IntSortedSet
- All Known Implementing Classes:
AbstractIntSet,AbstractIntSortedSet,IntArraySet,IntAVLTreeSet,IntLinkedOpenCustomHashSet,IntLinkedOpenHashSet,IntOpenCustomHashSet,IntOpenHashBigSet,IntOpenHashSet,IntRBTreeSet,IntSets.EmptySet,IntSets.Singleton,IntSets.SynchronizedSet,IntSets.UnmodifiableSet,IntSortedSets.EmptySet,IntSortedSets.Singleton,IntSortedSets.SynchronizedSortedSet,IntSortedSets.UnmodifiableSortedSet
public interface IntSet extends IntCollection, Set<Integer>
A type-specific
Set; provides some additional methods that use
polymorphism to avoid (un)boxing.
Additionally, this interface strengthens (again) iterator().
- See Also:
Set
-
Method Summary
Modifier and Type Method Description default booleanadd(Integer o)Deprecated.Please use the corresponding type-specific method instead.default booleancontains(Object o)Deprecated.Please use the corresponding type-specific method instead.IntIteratoriterator()Returns a type-specific iterator on the elements of this set.static IntSetof(int... a)Creates a new set using a list of elements.default booleanrem(int k)Deprecated.Please useremove()instead.booleanremove(int k)Removes an element from this set.default booleanremove(Object o)Deprecated.Please use the corresponding type-specific method instead.Methods inherited from interface java.util.Collection
parallelStream, stream, toArrayMethods inherited from interface it.unimi.dsi.fastutil.ints.IntCollection
add, addAll, contains, containsAll, removeAll, removeIf, removeIf, retainAll, toArray, toIntArray, toIntArrayMethods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
forEach, forEach
-
Method Details
-
iterator
IntIterator iterator()Returns a type-specific iterator on the elements of this set.Note that this specification strengthens the one given in
Iterable.iterator(), which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extendsSet.- Specified by:
iteratorin interfaceCollection<Integer>- Specified by:
iteratorin interfaceIntCollection- Specified by:
iteratorin interfaceIntIterable- Specified by:
iteratorin interfaceIterable<Integer>- Specified by:
iteratorin interfaceSet<Integer>- Returns:
- a type-specific iterator on the elements of this set.
- See Also:
Iterable.iterator()
-
remove
boolean remove(int k)Removes an element from this set.Note that the corresponding method of a type-specific collection is
rem(). This unfortunate situation is caused by the clash with the similarly named index-based method in theListinterface.- See Also:
Collection.remove(Object)
-
remove
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
removein interfaceCollection<Integer>- Specified by:
removein interfaceIntCollection- Specified by:
removein interfaceSet<Integer>
-
add
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
addin interfaceCollection<Integer>- Specified by:
addin interfaceIntCollection- Specified by:
addin interfaceSet<Integer>
-
contains
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
containsin interfaceCollection<Integer>- Specified by:
containsin interfaceIntCollection- Specified by:
containsin interfaceSet<Integer>
-
rem
Deprecated.Please useremove()instead.Removes an element from this set.This method is inherited from the type-specific collection this type-specific set is based on, but it should not used as this interface reinstates
remove()as removal method.- Specified by:
remin interfaceIntCollection- See Also:
Collection.remove(Object)
-
of
Creates a new set using a list of elements.- Parameters:
a- a list of elements that will be used to initialize the new set.
-