|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ObjectPredicate | |
---|---|
com.carrotsearch.hppc | High Performance Primitive Collections (HPPC) library provides
typical data structures (lists, stacks, maps)
template-generated for all Java primitive types
(byte , int , etc.) to conserve
memory and boost performance. |
com.carrotsearch.hppc.predicates | Predicates that return a boolean true / false for
a given value. |
Uses of ObjectPredicate in com.carrotsearch.hppc |
---|
Methods in com.carrotsearch.hppc with type parameters of type ObjectPredicate | ||
---|---|---|
|
ObjectDeque.descendingForEach(T predicate)
Applies a predicate to container elements as long, as the predicate
returns true . |
|
|
ObjectArrayDeque.descendingForEach(T predicate)
Applies a predicate to container elements as long, as the predicate
returns true . |
|
|
ObjectDoubleOpenHashMap.KeysContainer.forEach(T predicate)
|
|
|
ObjectIntOpenHashMap.KeysContainer.forEach(T predicate)
|
|
|
ObjectByteOpenHashMap.KeysContainer.forEach(T predicate)
|
|
|
ObjectArrayDeque.forEach(T predicate)
Applies a predicate to container elements as long, as the predicate
returns true . |
|
|
ObjectLongOpenHashMap.KeysContainer.forEach(T predicate)
|
|
|
ObjectShortOpenHashMap.KeysContainer.forEach(T predicate)
|
|
|
ObjectCharOpenHashMap.KeysContainer.forEach(T predicate)
|
|
|
ObjectContainer.forEach(T predicate)
Applies a predicate to container elements as long, as the predicate
returns true . |
|
|
ObjectFloatOpenHashMap.KeysContainer.forEach(T predicate)
|
|
|
ObjectObjectOpenHashMap.KeysContainer.forEach(T predicate)
|
|
|
ObjectOpenHashSet.forEach(T predicate)
Applies a predicate to container elements as long, as the predicate
returns true . |
|
|
ObjectArrayList.forEach(T predicate)
Applies a predicate to container elements as long, as the predicate
returns true . |
|
|
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 . |
Methods in com.carrotsearch.hppc with parameters of type ObjectPredicate | |
---|---|
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 |
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 |
ObjectByteAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns true . |
int |
ObjectShortAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns true . |
int |
ObjectIntAssociativeContainer.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 |
ObjectArrayDeque.removeAll(ObjectPredicate<? super KType> predicate)
Removes all elements in this collection for which the given 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 |
ObjectLongAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the 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 |
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 |
ObjectFloatAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the predicate returns true . |
int |
ObjectCollection.removeAll(ObjectPredicate<? super KType> predicate)
Removes all elements in this collection for which the given predicate returns true . |
int |
ObjectDoubleAssociativeContainer.removeAll(ObjectPredicate<? super KType> predicate)
Removes all keys (and associated values) for which the 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 |
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 |
ObjectObjectAssociativeContainer.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 |
ObjectCharAssociativeContainer.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 |
ObjectCollection.retainAll(ObjectPredicate<? super KType> predicate)
Keeps all elements in this collection for which the given predicate returns true . |
Uses of ObjectPredicate in com.carrotsearch.hppc.predicates |
---|
Classes in com.carrotsearch.hppc.predicates that implement ObjectPredicate | |
---|---|
class |
GuavaPredicateAdapter<KType>
An adapter between Guava's Predicate and HPPC's ObjectPredicate . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |