Parallel Colt 0.7.2

Uses of Interface
cern.colt.function.tint.IntProcedure

Packages that use IntProcedure
cern.colt.list.tint Resizable list holding elements of int data type. 
cern.colt.map.tdouble Automatically growing and shrinking map holding elements of double data type. 
cern.colt.map.tfloat Automatically growing and shrinking map holding elements of float data type. 
cern.colt.map.tint Automatically growing and shrinking map holding elements of int data type. 
cern.colt.map.tobject Automatically growing and shrinking map holding elements of Object data type. 
cern.colt.matrix.tbit Bit vectors and bit matrices. 
cern.colt.matrix.tint Matrix interfaces and factories holding elements of int data type. 
cern.colt.matrix.tint.impl Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of int data type. 
cern.jet.math.tint Tools for basic and advanced mathematics: Arithmetics and Function Objects for generic function evaluation operating on int data type. 
 

Uses of IntProcedure in cern.colt.list.tint
 

Methods in cern.colt.list.tint with parameters of type IntProcedure
 boolean IntArrayList.forEach(IntProcedure procedure)
          Applies a procedure to each element of the receiver, if any.
 boolean AbstractIntList.forEach(IntProcedure procedure)
          Applies a procedure to each element of the receiver, if any.
 

Uses of IntProcedure in cern.colt.map.tdouble
 

Methods in cern.colt.map.tdouble with parameters of type IntProcedure
 boolean OpenIntDoubleHashMap.forEachKey(IntProcedure procedure)
          Applies a procedure to each key of the receiver, if any.
abstract  boolean AbstractIntDoubleMap.forEachKey(IntProcedure procedure)
          Applies a procedure to each key of the receiver, if any.
 

Uses of IntProcedure in cern.colt.map.tfloat
 

Methods in cern.colt.map.tfloat with parameters of type IntProcedure
 boolean OpenIntFloatHashMap.forEachKey(IntProcedure procedure)
          Applies a procedure to each key of the receiver, if any.
abstract  boolean AbstractIntFloatMap.forEachKey(IntProcedure procedure)
          Applies a procedure to each key of the receiver, if any.
 

Uses of IntProcedure in cern.colt.map.tint
 

Methods in cern.colt.map.tint with parameters of type IntProcedure
 boolean OpenIntIntHashMap.forEachKey(IntProcedure procedure)
          Applies a procedure to each key of the receiver, if any.
abstract  boolean AbstractIntIntMap.forEachKey(IntProcedure procedure)
          Applies a procedure to each key of the receiver, if any.
 

Uses of IntProcedure in cern.colt.map.tobject
 

Methods in cern.colt.map.tobject with parameters of type IntProcedure
 boolean OpenIntObjectHashMap.forEachKey(IntProcedure procedure)
          Applies a procedure to each key of the receiver, if any.
abstract  boolean AbstractIntObjectMap.forEachKey(IntProcedure procedure)
          Applies a procedure to each key of the receiver, if any.
 

Uses of IntProcedure in cern.colt.matrix.tbit
 

Methods in cern.colt.matrix.tbit with parameters of type IntProcedure
 boolean BitVector.forEachIndexFromToInState(int from, int to, boolean state, IntProcedure procedure)
          Applies a procedure to each bit index within the specified range that holds a bit in the given state.
 

Uses of IntProcedure in cern.colt.matrix.tint
 

Methods in cern.colt.matrix.tint with parameters of type IntProcedure
 int IntMatrix3D.aggregate(IntIntFunction aggr, IntFunction f, IntProcedure cond)
          Applies a function to each cell that satisfies a condition and aggregates the results.
 int IntMatrix2D.aggregate(IntIntFunction aggr, IntFunction f, IntProcedure cond)
          Applies a function to each cell that satisfies a condition and aggregates the results.
 IntMatrix3D IntMatrix3D.assign(IntProcedure cond, int value)
          Assigns a value to all cells that satisfy a condition.
 IntMatrix2D IntMatrix2D.assign(IntProcedure cond, int value)
          Assigns a value to all cells that satisfy a condition.
 IntMatrix1D IntMatrix1D.assign(IntProcedure cond, int value)
          Assigns a value to all cells that satisfy a condition.
 IntMatrix3D IntMatrix3D.assign(IntProcedure cond, IntFunction f)
          Assigns the result of a function to all cells that satisfy a condition.
 IntMatrix2D IntMatrix2D.assign(IntProcedure cond, IntFunction f)
          Assigns the result of a function to all cells that satisfy a condition.
 IntMatrix1D IntMatrix1D.assign(IntProcedure cond, IntFunction f)
          Assigns the result of a function to all cells that satisfy a condition.
 IntMatrix1D IntMatrix1D.viewSelection(IntProcedure condition)
          Constructs and returns a new selection view that is a matrix holding the cells matching the given condition.
 

Uses of IntProcedure in cern.colt.matrix.tint.impl
 

Methods in cern.colt.matrix.tint.impl with parameters of type IntProcedure
 int DenseIntMatrix3D.aggregate(IntIntFunction aggr, IntFunction f, IntProcedure cond)
           
 int DenseIntMatrix2D.aggregate(IntIntFunction aggr, IntFunction f, IntProcedure cond)
           
 IntMatrix3D DenseIntMatrix3D.assign(IntProcedure cond, int value)
           
 IntMatrix2D DenseIntMatrix2D.assign(IntProcedure cond, int value)
           
 IntMatrix1D DenseIntMatrix1D.assign(IntProcedure cond, int value)
           
 IntMatrix3D DenseIntMatrix3D.assign(IntProcedure cond, IntFunction f)
           
 IntMatrix2D DenseIntMatrix2D.assign(IntProcedure cond, IntFunction function)
           
 IntMatrix1D DenseIntMatrix1D.assign(IntProcedure cond, IntFunction function)
           
 

Uses of IntProcedure in cern.jet.math.tint
 

Methods in cern.jet.math.tint that return IntProcedure
static IntProcedure IntFunctions.isBetween(int from, int to)
          Constructs a function that returns from<=a && a<=to.
static IntProcedure IntFunctions.isEqual(int b)
          Constructs a function that returns a == b.
static IntProcedure IntFunctions.isGreater(int b)
          Constructs a function that returns a > b.
static IntProcedure IntFunctions.isLess(int b)
          Constructs a function that returns a < b.
 


Parallel Colt 0.7.2

Jump to the Parallel Colt Homepage