Package | Description |
---|---|
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.tlong |
Automatically growing and shrinking map holding elements of long 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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
AbstractIntDoubleMap.forEachKey(IntProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
boolean |
OpenIntDoubleHashMap.forEachKey(IntProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
AbstractIntIntMap.forEachKey(IntProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
boolean |
OpenIntIntHashMap.forEachKey(IntProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
AbstractIntLongMap.forEachKey(IntProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
boolean |
OpenIntLongHashMap.forEachKey(IntProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
IntMatrix1D |
IntMatrix1D.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.
|
IntMatrix3D |
IntMatrix3D.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.
|
IntMatrix2D |
IntMatrix2D.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.
|
Modifier and Type | Method and Description |
---|---|
int |
DenseIntMatrix3D.aggregate(IntIntFunction aggr,
IntFunction f,
IntProcedure cond) |
int |
DenseIntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f,
IntProcedure cond) |
int |
DenseColumnIntMatrix2D.aggregate(IntIntFunction aggr,
IntFunction f,
IntProcedure cond) |
IntMatrix3D |
DenseIntMatrix3D.assign(IntProcedure cond,
int value) |
IntMatrix1D |
DenseIntMatrix1D.assign(IntProcedure cond,
int value) |
IntMatrix2D |
DenseIntMatrix2D.assign(IntProcedure cond,
int value) |
IntMatrix2D |
DenseColumnIntMatrix2D.assign(IntProcedure cond,
int value) |
IntMatrix3D |
DenseIntMatrix3D.assign(IntProcedure cond,
IntFunction f) |
IntMatrix1D |
DenseIntMatrix1D.assign(IntProcedure cond,
IntFunction function) |
IntMatrix2D |
DenseIntMatrix2D.assign(IntProcedure cond,
IntFunction function) |
IntMatrix2D |
DenseColumnIntMatrix2D.assign(IntProcedure cond,
IntFunction function) |
Modifier and Type | Method and Description |
---|---|
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.
|
Jump to the Parallel Colt Homepage