Package | Description |
---|---|
cern.colt.list.tlong |
Resizable list holding elements of long 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.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.tlong |
Matrix interfaces and factories holding elements of long data type.
|
cern.colt.matrix.tlong.impl |
Efficient and flexible dense and sparse 1, 2 and 3-dimensional matrices holding elements of long data type.
|
cern.jet.math.tlong |
Tools for basic and advanced mathematics: Arithmetics and Function Objects for generic function evaluation operating on long data type.
|
Modifier and Type | Method and Description |
---|---|
boolean |
LongArrayList.forEach(LongProcedure procedure)
Applies a procedure to each element of the receiver, if any.
|
boolean |
AbstractLongList.forEach(LongProcedure procedure)
Applies a procedure to each element of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
boolean |
OpenLongDoubleHashMap.forEachKey(LongProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
abstract boolean |
AbstractLongDoubleMap.forEachKey(LongProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
AbstractLongFloatMap.forEachKey(LongProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
boolean |
OpenLongFloatHashMap.forEachKey(LongProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
AbstractLongIntMap.forEachKey(LongProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
boolean |
OpenLongIntHashMap.forEachKey(LongProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
abstract boolean |
AbstractLongLongMap.forEachKey(LongProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
boolean |
OpenLongLongHashMap.forEachKey(LongProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
boolean |
OpenLongObjectHashMap.forEachKey(LongProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
abstract boolean |
AbstractLongObjectMap.forEachKey(LongProcedure procedure)
Applies a procedure to each key of the receiver, if any.
|
Modifier and Type | Method and Description |
---|---|
long |
LongMatrix3D.aggregate(LongLongFunction aggr,
LongFunction f,
LongProcedure cond)
Applies a function to each cell that satisfies a condition and aggregates
the results.
|
long |
LongMatrix2D.aggregate(LongLongFunction aggr,
LongFunction f,
LongProcedure cond)
Applies a function to each cell that satisfies a condition and aggregates
the results.
|
LongMatrix1D |
LongMatrix1D.assign(LongProcedure cond,
long value)
Assigns a value to all cells that satisfy a condition.
|
LongMatrix3D |
LongMatrix3D.assign(LongProcedure cond,
long value)
Assigns a value to all cells that satisfy a condition.
|
LongMatrix2D |
LongMatrix2D.assign(LongProcedure cond,
long value)
Assigns a value to all cells that satisfy a condition.
|
LongMatrix1D |
LongMatrix1D.assign(LongProcedure cond,
LongFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
LongMatrix3D |
LongMatrix3D.assign(LongProcedure cond,
LongFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
LongMatrix2D |
LongMatrix2D.assign(LongProcedure cond,
LongFunction f)
Assigns the result of a function to all cells that satisfy a condition.
|
LongMatrix1D |
LongMatrix1D.viewSelection(LongProcedure 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 |
---|---|
long |
DenseLongMatrix3D.aggregate(LongLongFunction aggr,
LongFunction f,
LongProcedure cond) |
long |
DenseLongMatrix2D.aggregate(LongLongFunction aggr,
LongFunction f,
LongProcedure cond) |
long |
DenseColumnLongMatrix2D.aggregate(LongLongFunction aggr,
LongFunction f,
LongProcedure cond) |
LongMatrix3D |
DenseLongMatrix3D.assign(LongProcedure cond,
long value) |
LongMatrix2D |
DenseLongMatrix2D.assign(LongProcedure cond,
long value) |
LongMatrix1D |
DenseLongMatrix1D.assign(LongProcedure cond,
long value) |
LongMatrix2D |
DenseColumnLongMatrix2D.assign(LongProcedure cond,
long value) |
LongMatrix3D |
DenseLongMatrix3D.assign(LongProcedure cond,
LongFunction f) |
LongMatrix2D |
DenseLongMatrix2D.assign(LongProcedure cond,
LongFunction function) |
LongMatrix1D |
DenseLongMatrix1D.assign(LongProcedure cond,
LongFunction function) |
LongMatrix2D |
DenseColumnLongMatrix2D.assign(LongProcedure cond,
LongFunction function) |
Modifier and Type | Method and Description |
---|---|
static LongProcedure |
LongFunctions.isBetween(long from,
long to)
Constructs a function that returns from<=a && a<=to.
|
static LongProcedure |
LongFunctions.isEqual(long b)
Constructs a function that returns a == b.
|
static LongProcedure |
LongFunctions.isGreater(long b)
Constructs a function that returns a > b.
|
static LongProcedure |
LongFunctions.isLess(long b)
Constructs a function that returns a < b.
|
Jump to the Parallel Colt Homepage