Package | Description |
---|---|
com.carrotsearch.hppc | |
com.carrotsearch.hppc.predicates |
Predicates that return a boolean
true / false for
a given value. |
Modifier and Type | Method and Description |
---|---|
<T extends ObjectPredicate<? super KType>> |
ObjectArrayDeque.descendingForEach(T predicate)
Applies a
predicate to container elements as long, as the predicate
returns true . |
<T extends ObjectPredicate<? super KType>> |
ObjectDeque.descendingForEach(T predicate)
Applies a
predicate to container elements as long, as the predicate
returns true . |
<T extends ObjectPredicate<? super KType>> |
ObjectIntOpenHashMap.KeysContainer.forEach(T predicate) |
<T extends ObjectPredicate<? super KType>> |
ObjectArrayDeque.forEach(T predicate)
Applies a
predicate to container elements as long, as the predicate
returns true . |
<T extends ObjectPredicate<? super KType>> |
ObjectShortOpenHashMap.KeysContainer.forEach(T predicate) |
<T extends ObjectPredicate<? super KType>> |
ObjectByteOpenHashMap.KeysContainer.forEach(T predicate) |
<T extends ObjectPredicate<? super KType>> |
ObjectOpenHashSet.forEach(T predicate)
Applies a
predicate to container elements as long, as the predicate
returns true . |
<T extends ObjectPredicate<? super KType>> |
ObjectContainer.forEach(T predicate)
Applies a
predicate to container elements as long, as the predicate
returns true . |
<T extends ObjectPredicate<? super KType>> |
ObjectArrayList.forEach(T predicate)
Applies a
predicate to container elements as long, as the predicate
returns true . |
<T extends ObjectPredicate<? super KType>> |
ObjectObjectOpenHashMap.KeysContainer.forEach(T predicate) |
<T extends ObjectPredicate<? super KType>> |
ObjectLongOpenHashMap.KeysContainer.forEach(T predicate) |
<T extends ObjectPredicate<? super KType>> |
ObjectCharOpenHashMap.KeysContainer.forEach(T predicate) |
<T extends ObjectPredicate<? super KType>> |
ObjectFloatOpenHashMap.KeysContainer.forEach(T predicate) |
<T extends ObjectPredicate<? super KType>> |
ObjectDoubleOpenHashMap.KeysContainer.forEach(T predicate) |
<T extends ObjectPredicate<? super KType>> |
ObjectArrayList.forEach(T predicate,
int fromIndex,
int toIndex)
Applies
predicate to a slice of the list,
fromIndex , inclusive, to toIndex ,
exclusive, or until predicate returns false . |
Modifier and Type | Method and Description |
---|---|
int |
ObjectIntOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectIntOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate) |
int |
ObjectArrayDeque.removeAll(ObjectPredicate<? super KType> predicate)
Removes all elements in this collection for which the
given predicate returns
true . |
int |
ObjectShortOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectShortOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate) |
int |
ObjectDoubleAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectByteOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectByteOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate) |
int |
ObjectLongAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectOpenHashSet.removeAll(ObjectPredicate<? super KType> predicate)
Removes all elements in this collection for which the
given predicate returns
true . |
int |
ObjectIntAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectArrayList.removeAll(ObjectPredicate<? super KType> predicate)
Removes all elements in this collection for which the
given predicate returns
true . |
int |
ObjectByteAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectCharAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectObjectAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectObjectOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectObjectOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate) |
int |
ObjectFloatAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectLongOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectLongOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate) |
int |
ObjectCharOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectCharOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate) |
int |
ObjectCollection.removeAll(ObjectPredicate<? super KType> predicate)
Removes all elements in this collection for which the
given predicate returns
true . |
int |
ObjectFloatOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectFloatOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate) |
int |
ObjectDoubleOpenHashMap.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectDoubleOpenHashMap.KeysContainer.removeAll(ObjectPredicate<? super KType> predicate) |
int |
ObjectShortAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns
true . |
int |
ObjectCollection.retainAll(ObjectPredicate<? super KType> predicate)
Keeps all elements in this collection for which the
given predicate returns
true . |
Modifier and Type | Class and Description |
---|---|
class |
GuavaPredicateAdapter<KType>
An adapter between Guava's
Predicate and HPPC's ObjectPredicate . |
Copyright © 2016 Carrot Search s.c.. All rights reserved.