Uses of Interface
com.carrotsearch.hppc.predicates.ObjectObjectPredicate
-
Packages that use ObjectObjectPredicate Package Description com.carrotsearch.hppc -
-
Uses of ObjectObjectPredicate in com.carrotsearch.hppc
Methods in com.carrotsearch.hppc with type parameters of type ObjectObjectPredicate Modifier and Type Method Description <T extends ObjectObjectPredicate<? super KType,? super VType>>
TObjectObjectAssociativeContainer. forEach(T predicate)
Applies a given predicate to all keys-value pairs in this container.<T extends ObjectObjectPredicate<? super KType,? super VType>>
TObjectObjectHashMap. forEach(T predicate)
Applies a given predicate to all keys-value pairs in this container.Methods in com.carrotsearch.hppc with parameters of type ObjectObjectPredicate Modifier and Type Method Description int
ObjectObjectAssociativeContainer. removeAll(ObjectObjectPredicate<? super KType,? super VType> predicate)
Removes all keys (and associated values) for which the predicate returnstrue
.int
ObjectObjectHashMap. removeAll(ObjectObjectPredicate<? super KType,? super VType> predicate)
Removes all keys (and associated values) for which the predicate returnstrue
.
-