Class ImmutableLongLongMapKeySet
java.lang.Object
org.eclipse.collections.impl.primitive.AbstractLongIterable
org.eclipse.collections.impl.set.primitive.AbstractLongSet
org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableLongSet
org.eclipse.collections.impl.map.mutable.primitive.ImmutableLongLongMapKeySet
- All Implemented Interfaces:
Serializable
,ImmutableLongCollection
,LongIterable
,PrimitiveIterable
,ImmutableLongSet
,LongSet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg
- Since:
- 6.0.
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final int
private final boolean
private final boolean
private static final long
private static final int
private static final int
private final long[]
private final int
private static final long
private static final long
-
Constructor Summary
ConstructorsConstructorDescriptionImmutableLongLongMapKeySet
(long[] keysValues, int occupiedWithData, boolean containsZeroKey, boolean containsOneKey) -
Method Summary
Modifier and TypeMethodDescriptionboolean
allSatisfy
(LongPredicate predicate) Returns true if all of the elements in the LongIterable return true for the specified predicate, otherwise returns false.boolean
anySatisfy
(LongPredicate predicate) Returns true if any of the elements in the LongIterable return true for the specified predicate, otherwise returns false.void
appendString
(Appendable appendable, String start, String separator, String end) Prints a string representation of this collection onto the givenAppendable
.<V> ImmutableSet
<V> collect
(LongToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.boolean
contains
(long value) Returns true if the value is contained in the LongIterable, and false if it is not.int
count
(LongPredicate predicate) Returns a count of the number of elements in the LongIterable that return true for the specified predicate.long
detectIfNone
(LongPredicate predicate, long ifNone) void
each
(LongProcedure procedure) A synonym for forEach.void
forEach
(LongProcedure procedure) Applies the LongProcedure to each element in the LongIterable.int
hashCode()
Follows the same general contract asSet.hashCode()
.<T> T
injectInto
(T injectedValue, ObjectLongToObjectFunction<? super T, ? extends T> function) private static boolean
isEmptyKey
(long key) private static boolean
isNonSentinel
(long key) private static boolean
isRemovedKey
(long key) Returns a primitive iterator that can be used to iterate over the LongIterable in an imperative style.private int
mask
(int spread) long
max()
long
min()
boolean
noneSatisfy
(LongPredicate predicate) Returns true if none of the elements in the LongIterable return true for the specified predicate, otherwise returns false.(package private) int
probe
(long element) (package private) int
probeThree
(long element, int removedIndex) (package private) int
probeTwo
(long element, int removedIndex) reject
(LongPredicate predicate) Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.select
(LongPredicate predicate) Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.int
size()
Returns the number of items in this iterable.(package private) int
spreadAndMask
(long element) (package private) int
spreadTwoAndMask
(long element) long
sum()
long[]
toArray()
Converts the LongIterable to a primitive long array.long[]
toArray
(long[] array) Converts the LongIterable to a primitive long array.private Object
Methods inherited from class org.eclipse.collections.impl.set.immutable.primitive.AbstractImmutableLongSet
chunk, freeze, newWith, newWithAll, newWithout, newWithoutAll, toImmutable
Methods inherited from class org.eclipse.collections.impl.set.primitive.AbstractLongSet
cartesianProduct, equals
Methods inherited from class org.eclipse.collections.impl.primitive.AbstractLongIterable
asLazy, average, maxIfEmpty, median, minIfEmpty, toBag, toList, toSet, toSortedArray, toSortedList, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.collections.api.set.primitive.ImmutableLongSet
difference, intersect, symmetricDifference, tap, union
Methods inherited from interface org.eclipse.collections.api.LongIterable
asLazy, average, averageIfEmpty, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, containsAll, containsAll, containsAny, containsAny, containsNone, containsNone, flatCollect, injectIntoBoolean, injectIntoByte, injectIntoChar, injectIntoDouble, injectIntoFloat, injectIntoInt, injectIntoLong, injectIntoShort, maxIfEmpty, median, medianIfEmpty, minIfEmpty, reduce, reduceIfEmpty, reject, select, summaryStatistics, toBag, toList, toSet, toSortedArray, toSortedList, toSortedList, toSortedListBy, toSortedListBy
Methods inherited from interface org.eclipse.collections.api.set.primitive.LongSet
cartesianProduct, equals, isProperSubsetOf, isSubsetOf, tap
Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
EMPTY_KEY
private static final long EMPTY_KEY- See Also:
-
REMOVED_KEY
private static final long REMOVED_KEY- See Also:
-
CACHE_LINE_SIZE
private static final int CACHE_LINE_SIZE- See Also:
-
KEY_SIZE
private static final int KEY_SIZE- See Also:
-
INITIAL_LINEAR_PROBE
private static final int INITIAL_LINEAR_PROBE- See Also:
-
keysValues
private final long[] keysValues -
occupiedWithData
private final int occupiedWithData -
containsZeroKey
private final boolean containsZeroKey -
containsOneKey
private final boolean containsOneKey
-
-
Constructor Details
-
ImmutableLongLongMapKeySet
ImmutableLongLongMapKeySet(long[] keysValues, int occupiedWithData, boolean containsZeroKey, boolean containsOneKey)
-
-
Method Details
-
isEmptyKey
private static boolean isEmptyKey(long key) -
isRemovedKey
private static boolean isRemovedKey(long key) -
isNonSentinel
private static boolean isNonSentinel(long key) -
hashCode
public int hashCode()Description copied from interface:LongSet
Follows the same general contract asSet.hashCode()
.- Specified by:
hashCode
in interfaceLongSet
- Specified by:
hashCode
in classAbstractLongSet
-
size
public int size()Description copied from interface:PrimitiveIterable
Returns the number of items in this iterable.- Specified by:
size
in interfacePrimitiveIterable
-
appendString
Description copied from interface:PrimitiveIterable
Prints a string representation of this collection onto the givenAppendable
. Prints the string returned byPrimitiveIterable.makeString(String, String, String)
.- Specified by:
appendString
in interfacePrimitiveIterable
-
longIterator
Description copied from interface:LongIterable
Returns a primitive iterator that can be used to iterate over the LongIterable in an imperative style.- Specified by:
longIterator
in interfaceLongIterable
-
toArray
public long[] toArray()Description copied from interface:LongIterable
Converts the LongIterable to a primitive long array.- Specified by:
toArray
in interfaceLongIterable
-
toArray
public long[] toArray(long[] array) Description copied from interface:LongIterable
Converts the LongIterable to a primitive long array. If the collection fits into the provided array it is used to store its elements and is returned from the method, otherwise a new array of the appropriate size is allocated and returned. If the iterable is empty, the target array is returned unchanged.- Specified by:
toArray
in interfaceLongIterable
-
contains
public boolean contains(long value) Description copied from interface:LongIterable
Returns true if the value is contained in the LongIterable, and false if it is not.- Specified by:
contains
in interfaceLongIterable
-
forEach
Description copied from interface:LongIterable
Applies the LongProcedure to each element in the LongIterable.- Specified by:
forEach
in interfaceLongIterable
-
each
Description copied from interface:LongIterable
A synonym for forEach.- Specified by:
each
in interfaceLongIterable
- Since:
- 7.0.
-
select
Description copied from interface:LongIterable
Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.- Specified by:
select
in interfaceImmutableLongCollection
- Specified by:
select
in interfaceImmutableLongSet
- Specified by:
select
in interfaceLongIterable
- Specified by:
select
in interfaceLongSet
-
reject
Description copied from interface:LongIterable
Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.- Specified by:
reject
in interfaceImmutableLongCollection
- Specified by:
reject
in interfaceImmutableLongSet
- Specified by:
reject
in interfaceLongIterable
- Specified by:
reject
in interfaceLongSet
-
collect
Description copied from interface:LongIterable
Returns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map.- Specified by:
collect
in interfaceImmutableLongCollection
- Specified by:
collect
in interfaceImmutableLongSet
- Specified by:
collect
in interfaceLongIterable
- Specified by:
collect
in interfaceLongSet
-
detectIfNone
- Specified by:
detectIfNone
in interfaceLongIterable
-
count
Description copied from interface:LongIterable
Returns a count of the number of elements in the LongIterable that return true for the specified predicate.- Specified by:
count
in interfaceLongIterable
-
anySatisfy
Description copied from interface:LongIterable
Returns true if any of the elements in the LongIterable return true for the specified predicate, otherwise returns false.- Specified by:
anySatisfy
in interfaceLongIterable
-
allSatisfy
Description copied from interface:LongIterable
Returns true if all of the elements in the LongIterable return true for the specified predicate, otherwise returns false.- Specified by:
allSatisfy
in interfaceLongIterable
-
noneSatisfy
Description copied from interface:LongIterable
Returns true if none of the elements in the LongIterable return true for the specified predicate, otherwise returns false.- Specified by:
noneSatisfy
in interfaceLongIterable
-
sum
public long sum()- Specified by:
sum
in interfaceLongIterable
-
max
public long max()- Specified by:
max
in interfaceLongIterable
-
min
public long min()- Specified by:
min
in interfaceLongIterable
-
injectInto
public <T> T injectInto(T injectedValue, ObjectLongToObjectFunction<? super T, ? extends T> function) - Specified by:
injectInto
in interfaceLongIterable
-
writeReplace
-
probe
int probe(long element) -
probeTwo
int probeTwo(long element, int removedIndex) -
probeThree
int probeThree(long element, int removedIndex) -
spreadAndMask
int spreadAndMask(long element) -
spreadTwoAndMask
int spreadTwoAndMask(long element) -
mask
private int mask(int spread)
-