Class AbstractIntCollection
java.lang.Object
com.carrotsearch.hppc.AbstractIntCollection
- All Implemented Interfaces:
IntCollection, IntContainer, Iterable<IntCursor>
- Direct Known Subclasses:
ByteIntHashMap.ValuesContainer, CharIntHashMap.ValuesContainer, DoubleIntHashMap.ValuesContainer, FloatIntHashMap.ValuesContainer, IntArrayDeque, IntArrayList, IntByteHashMap.KeysContainer, IntCharHashMap.KeysContainer, IntDoubleHashMap.KeysContainer, IntFloatHashMap.KeysContainer, IntHashSet, IntIntHashMap.KeysContainer, IntIntHashMap.ValuesContainer, IntLongHashMap.KeysContainer, IntObjectHashMap.KeysContainer, IntShortHashMap.KeysContainer, LongIntHashMap.ValuesContainer, ObjectIntHashMap.ValuesContainer, ShortIntHashMap.ValuesContainer
@Generated(date="2024-05-16T08:18:11+0000",
value="AbstractKTypeCollection.java")
abstract class AbstractIntCollection
extends Object
implements IntCollection
Common superclass for collections.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintDefault implementation uses a predicate for removal.intDefault implementation uses a predicate for retaining.intretainAll(IntPredicate predicate) Default implementation redirects toIntCollection.removeAll(IntPredicate)and negates the predicate.int[]toArray()Default implementation of copying to an array.toString()Convert the contents of this container to a human-friendly string.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface IntCollection
clear, release, removeAll, removeAllMethods inherited from interface Iterable
forEach, spliterator
-
Constructor Details
-
AbstractIntCollection
AbstractIntCollection()
-
-
Method Details
-
removeAll
Default implementation uses a predicate for removal.- Specified by:
removeAllin interfaceIntCollection- Returns:
- Returns the number of removed elements.
-
retainAll
Default implementation uses a predicate for retaining.- Specified by:
retainAllin interfaceIntCollection- Returns:
- Returns the number of removed elements.
-
retainAll
Default implementation redirects toIntCollection.removeAll(IntPredicate)and negates the predicate.- Specified by:
retainAllin interfaceIntCollection- Returns:
- Returns the number of removed elements.
-
toArray
public int[] toArray()Default implementation of copying to an array.- Specified by:
toArrayin interfaceIntContainer
-
toString
-