Uses of Interface
gnu.trove.TFloatProcedure

Packages that use TFloatProcedure
gnu.trove   
 

Uses of TFloatProcedure in gnu.trove
 

Classes in gnu.trove that implement TFloatProcedure
(package private)  class SerializationProcedure
          Implementation of the variously typed procedure interfaces that supports writing the arguments to the procedure out on an ObjectOutputStream.
private  class TFloatHashSet.HashProcedure
           
 

Methods in gnu.trove with parameters of type TFloatProcedure
 boolean TFloatHash.forEach(TFloatProcedure procedure)
          Executes procedure for each element in the set.
 boolean TFloatArrayList.forEach(TFloatProcedure procedure)
          Applies the procedure to each value in the list in ascending (front to back) order.
 boolean TFloatArrayList.forEachDescending(TFloatProcedure procedure)
          Applies the procedure to each value in the list in descending (back to front) order.
 boolean TFloatObjectHashMap.forEachKey(TFloatProcedure procedure)
          Executes procedure for each key in the map.
 boolean TFloatLongHashMap.forEachKey(TFloatProcedure procedure)
          Executes procedure for each key in the map.
 boolean TFloatIntHashMap.forEachKey(TFloatProcedure procedure)
          Executes procedure for each key in the map.
 boolean TFloatFloatHashMap.forEachKey(TFloatProcedure procedure)
          Executes procedure for each key in the map.
 boolean TFloatDoubleHashMap.forEachKey(TFloatProcedure procedure)
          Executes procedure for each key in the map.
 boolean TObjectFloatHashMap.forEachValue(TFloatProcedure procedure)
          Executes procedure for each value in the map.
 boolean TLongFloatHashMap.forEachValue(TFloatProcedure procedure)
          Executes procedure for each value in the map.
 boolean TIntFloatHashMap.forEachValue(TFloatProcedure procedure)
          Executes procedure for each value in the map.
 boolean TFloatFloatHashMap.forEachValue(TFloatProcedure procedure)
          Executes procedure for each value in the map.
 boolean TDoubleFloatHashMap.forEachValue(TFloatProcedure procedure)
          Executes procedure for each value in the map.
 TFloatArrayList TFloatArrayList.grep(TFloatProcedure condition)
          Searches the list for values satisfying condition in the manner of the *nix grep utility.
 TFloatArrayList TFloatArrayList.inverseGrep(TFloatProcedure condition)
          Searches the list for values which do not satisfy condition.