Uses of Interface
net.openhft.koloboke.function.Predicate

Packages that use Predicate
net.openhft.koloboke.collect The root package of the collection library. 
net.openhft.koloboke.collect.hash Contains basic interfaces and commonly used classes related to containers, based on hash tables. 
 

Uses of Predicate in net.openhft.koloboke.collect
 

Methods in net.openhft.koloboke.collect with parameters of type Predicate
 boolean ObjCollection.forEachWhile(Predicate<? super E> predicate)
          Checks the given predicate on each element of this collection until all element have been processed or the predicate returns false for some element, or throws an Exception.
 boolean ObjCollection.removeIf(Predicate<? super E> filter)
          Removes all of the elements of this collection that satisfy the given predicate.
 

Uses of Predicate in net.openhft.koloboke.collect.hash
 

Methods in net.openhft.koloboke.collect.hash that return Predicate
abstract  Predicate<HashContainer> HashConfig.getShrinkCondition()
          Returns the shrink condition of this hash config.
 

Methods in net.openhft.koloboke.collect.hash with parameters of type Predicate
 HashConfig HashConfig.withShrinkCondition(Predicate<HashContainer> condition)
          Returns a copy of this hash config with the shrink condition set to the given predicate.