Uses of Interface
com.carrotsearch.hppc.procedures.ObjectProcedure

Packages that use ObjectProcedure
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. 
com.carrotsearch.hppc.procedures Procedures apply to keys and/or values in a container. 
 

Uses of ObjectProcedure in com.carrotsearch.hppc
 

Methods in com.carrotsearch.hppc with type parameters of type ObjectProcedure
<T extends ObjectProcedure<? super KType>>
T
ObjectDeque.descendingForEach(T procedure)
          Applies a procedure to all container elements.
<T extends ObjectProcedure<? super KType>>
T
ObjectArrayDeque.descendingForEach(T procedure)
          Applies procedure to all elements of this deque, tail to head.
<T extends ObjectProcedure<? super KType>>
T
ObjectDoubleOpenHashMap.KeysContainer.forEach(T procedure)
           
<T extends ObjectProcedure<? super KType>>
T
ObjectIntOpenHashMap.KeysContainer.forEach(T procedure)
           
<T extends ObjectProcedure<? super KType>>
T
ObjectByteOpenHashMap.KeysContainer.forEach(T procedure)
           
<T extends ObjectProcedure<? super KType>>
T
ObjectArrayDeque.forEach(T procedure)
          Applies a procedure to all container elements.
<T extends ObjectProcedure<? super KType>>
T
ObjectLongOpenHashMap.KeysContainer.forEach(T procedure)
           
<T extends ObjectProcedure<? super KType>>
T
ObjectShortOpenHashMap.KeysContainer.forEach(T procedure)
           
<T extends ObjectProcedure<? super KType>>
T
ObjectCharOpenHashMap.KeysContainer.forEach(T procedure)
           
<T extends ObjectProcedure<? super KType>>
T
ObjectContainer.forEach(T procedure)
          Applies a procedure to all container elements.
<T extends ObjectProcedure<? super KType>>
T
ObjectFloatOpenHashMap.KeysContainer.forEach(T procedure)
           
<T extends ObjectProcedure<? super KType>>
T
ObjectObjectOpenHashMap.KeysContainer.forEach(T procedure)
           
<T extends ObjectProcedure<? super KType>>
T
ObjectOpenHashSet.forEach(T procedure)
          Applies a procedure to all container elements.
<T extends ObjectProcedure<? super KType>>
T
ObjectArrayList.forEach(T procedure)
          Applies a procedure to all container elements.
<T extends ObjectProcedure<? super KType>>
T
ObjectArrayList.forEach(T procedure, int fromIndex, int toIndex)
          Applies procedure to a slice of the list, fromIndex, inclusive, to toIndex, exclusive.
 

Uses of ObjectProcedure in com.carrotsearch.hppc.procedures
 

Classes in com.carrotsearch.hppc.procedures that implement ObjectProcedure
 class GuavaProcedureAdapter<KType>
          An adapter between Guava's Predicate and HPPC's ObjectProcedure.
 



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