Uses of Interface
cern.colt.function.IntProcedure
-
Packages that use IntProcedure Package Description cern.colt.bitvector Bit vectors and bit matrices.cern.colt.list Resizable lists holding objects or primitive data types such as int, double, etc.cern.colt.map Automatically growing and shrinking maps holding objects or primitive data types such as int, double, etc.cern.jet.math Tools for basic and advanced mathematics: Arithmetics and Algebra, Polynomials and Chebyshev series, Bessel and Airy functions, Function Objects for generic function evaluation, etc. -
-
Uses of IntProcedure in cern.colt.bitvector
Classes in cern.colt.bitvector that implement IntProcedure Modifier and Type Class Description private classBitVector.IndexProcedureMethods in cern.colt.bitvector with parameters of type IntProcedure Modifier and Type Method Description booleanBitVector. 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.list
Methods in cern.colt.list with parameters of type IntProcedure Modifier and Type Method Description booleanAbstractIntList. forEach(IntProcedure procedure)Applies a procedure to each element of the receiver, if any.booleanIntArrayList. forEach(IntProcedure procedure)Applies a procedure to each element of the receiver, if any. -
Uses of IntProcedure in cern.colt.map
Methods in cern.colt.map with parameters of type IntProcedure Modifier and Type Method Description abstract booleanAbstractIntDoubleMap. forEachKey(IntProcedure procedure)Applies a procedure to each key of the receiver, if any.abstract booleanAbstractIntIntMap. forEachKey(IntProcedure procedure)Applies a procedure to each key of the receiver, if any.abstract booleanAbstractIntObjectMap. forEachKey(IntProcedure procedure)Applies a procedure to each key of the receiver, if any.booleanOpenIntDoubleHashMap. forEachKey(IntProcedure procedure)Applies a procedure to each key of the receiver, if any.booleanOpenIntIntHashMap. forEachKey(IntProcedure procedure)Applies a procedure to each key of the receiver, if any.booleanOpenIntObjectHashMap. forEachKey(IntProcedure procedure)Applies a procedure to each key of the receiver, if any. -
Uses of IntProcedure in cern.jet.math
Methods in cern.jet.math that return IntProcedure Modifier and Type Method Description static IntProcedureIntFunctions. isBetween(int from, int to)Constructs a function that returns from<=a && a<=to.static IntProcedureIntFunctions. isEqual(int b)Constructs a function that returns a == b.static IntProcedureIntFunctions. isGreater(int b)Constructs a function that returns a > b.static IntProcedureIntFunctions. isLess(int b)Constructs a function that returns a < b.
-