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

Packages that use IntPredicate
net.openhft.koloboke.collect The root package of the collection library. 
 

Uses of IntPredicate in net.openhft.koloboke.collect
 

Methods in net.openhft.koloboke.collect with parameters of type IntPredicate
 boolean IntCollection.forEachWhile(IntPredicate 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 IntCollection.removeIf(IntPredicate filter)
          Removes all of the elements of this collection that satisfy the given predicate.