Uses of Interface
com.koloboke.function.BiPredicate

Packages that use BiPredicate
com.koloboke.collect.map Contains interfaces of Map specializations, their factories and cursors. 
 

Uses of BiPredicate in com.koloboke.collect.map
 

Methods in com.koloboke.collect.map with parameters of type BiPredicate
 boolean ObjObjMap.forEachWhile(BiPredicate<? super K,? super V> predicate)
          Checks the given predicate on each entry in this map until all entries have been processed or the predicate returns false for some entry, or throws an Exception.
 boolean ObjObjMap.removeIf(BiPredicate<? super K,? super V> filter)
          Removes all of the entries of this collection that satisfy the given predicate.