Uses of Interface
com.carrotsearch.hppc.predicates.KTypePredicate

Packages that use KTypePredicate
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. 
 

Uses of KTypePredicate in com.carrotsearch.hppc
 

Methods in com.carrotsearch.hppc with type parameters of type KTypePredicate
<T extends KTypePredicate<? super KType>>
T
KTypeArrayDeque.descendingForEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends KTypePredicate<? super KType>>
T
KTypeDeque.descendingForEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends KTypePredicate<? super KType>>
T
KTypeVTypeOpenHashMap.KeysContainer.forEach(T predicate)
           
<T extends KTypePredicate<? super KType>>
T
KTypeContainer.forEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends KTypePredicate<? super KType>>
T
KTypeArrayDeque.forEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends KTypePredicate<? super KType>>
T
KTypeOpenHashSet.forEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends KTypePredicate<? super KType>>
T
KTypeArrayList.forEach(T predicate)
          Applies a predicate to container elements as long, as the predicate returns true.
<T extends KTypePredicate<? super KType>>
T
KTypeArrayList.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 KTypePredicate
 int KTypeVTypeOpenHashMap.removeAll(KTypePredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int KTypeVTypeOpenHashMap.KeysContainer.removeAll(KTypePredicate<? super KType> predicate)
           
 int KTypeCollection.removeAll(KTypePredicate<? super KType> predicate)
          Removes all elements in this collection for which the given predicate returns true.
 int KTypeArrayDeque.removeAll(KTypePredicate<? super KType> predicate)
          Removes all elements in this collection for which the given predicate returns true.
 int KTypeVTypeAssociativeContainer.removeAll(KTypePredicate<? super KType> predicate)
          Removes all keys (and associated values) for which the predicate returns true.
 int KTypeOpenHashSet.removeAll(KTypePredicate<? super KType> predicate)
          Removes all elements in this collection for which the given predicate returns true.
 int KTypeArrayList.removeAll(KTypePredicate<? super KType> predicate)
          Removes all elements in this collection for which the given predicate returns true.
 int KTypeCollection.retainAll(KTypePredicate<? super KType> predicate)
          Keeps all elements in this collection for which the given predicate returns true.
 



Copyright © 2011 Carrot Search s.c.. All Rights Reserved.