Package | Description |
---|---|
cern.colt.buffer.tlong |
Fixed sized (non resizable) streaming buffers holding long elements connected to a target objects to which data is automatically flushed upon buffer overflow.
|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
LongBuffer.addAllOf(LongArrayList list)
Adds all elements of the specified list to the receiver.
|
void |
LongBufferConsumer.addAllOf(LongArrayList list)
Adds all elements of the specified list to the receiver.
|
void |
LongBuffer2DConsumer.addAllOf(LongArrayList x,
LongArrayList y)
Adds all specified (x,y) points to the receiver.
|
void |
LongBuffer2D.addAllOf(LongArrayList x,
LongArrayList y)
Adds all specified points (x,y) to the receiver.
|
void |
LongBuffer3D.addAllOf(LongArrayList xElements,
LongArrayList yElements,
LongArrayList zElements)
Adds all specified (x,y,z) points to the receiver.
|
void |
LongBuffer3DConsumer.addAllOf(LongArrayList x,
LongArrayList y,
LongArrayList z)
Adds all specified (x,y,z) points to the receiver.
|
Modifier and Type | Method and Description |
---|---|
LongArrayList |
LongArrayList.copy()
Returns a deep copy of the receiver; uses
clone() and casts
the result. |
Modifier and Type | Method and Description |
---|---|
LongArrayList |
AbstractLongDoubleMap.keys()
Returns a list filled with all keys contained in the receiver.
|
LongArrayList |
AbstractDoubleLongMap.values()
Returns a list filled with all values contained in the receiver.
|
Modifier and Type | Method and Description |
---|---|
void |
OpenLongDoubleHashMap.keys(LongArrayList list)
Fills all keys contained in the receiver into the specified list.
|
void |
AbstractLongDoubleMap.keys(LongArrayList list)
Fills all keys contained in the receiver into the specified list.
|
void |
AbstractLongDoubleMap.keysSortedByValue(LongArrayList keyList)
Fills all keys sorted ascending by their associated value into the
specified list.
|
void |
OpenDoubleLongHashMap.pairsMatching(DoubleLongProcedure condition,
DoubleArrayList keyList,
LongArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractDoubleLongMap.pairsMatching(DoubleLongProcedure condition,
DoubleArrayList keyList,
LongArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
OpenLongDoubleHashMap.pairsMatching(LongDoubleProcedure condition,
LongArrayList keyList,
DoubleArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractLongDoubleMap.pairsMatching(LongDoubleProcedure condition,
LongArrayList keyList,
DoubleArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractDoubleLongMap.pairsSortedByKey(DoubleArrayList keyList,
LongArrayList valueList)
Fills all keys and values sorted ascending by key into the
specified lists.
|
void |
AbstractLongDoubleMap.pairsSortedByKey(LongArrayList keyList,
DoubleArrayList valueList)
Fills all keys and values sorted ascending by key into the
specified lists.
|
void |
AbstractDoubleLongMap.pairsSortedByValue(DoubleArrayList keyList,
LongArrayList valueList)
Fills all keys and values sorted ascending by value into the
specified lists.
|
void |
AbstractLongDoubleMap.pairsSortedByValue(LongArrayList keyList,
DoubleArrayList valueList)
Fills all keys and values sorted ascending by value into the
specified lists.
|
void |
OpenDoubleLongHashMap.values(LongArrayList list)
Fills all values contained in the receiver into the specified list.
|
void |
AbstractDoubleLongMap.values(LongArrayList list)
Fills all values contained in the receiver into the specified list.
|
Modifier and Type | Method and Description |
---|---|
LongArrayList |
AbstractLongFloatMap.keys()
Returns a list filled with all keys contained in the receiver.
|
LongArrayList |
AbstractFloatLongMap.values()
Returns a list filled with all values contained in the receiver.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractLongFloatMap.keys(LongArrayList list)
Fills all keys contained in the receiver into the specified list.
|
void |
OpenLongFloatHashMap.keys(LongArrayList list)
Fills all keys contained in the receiver into the specified list.
|
void |
AbstractLongFloatMap.keysSortedByValue(LongArrayList keyList)
Fills all keys sorted ascending by their associated value into the
specified list.
|
void |
AbstractFloatLongMap.pairsMatching(FloatLongProcedure condition,
FloatArrayList keyList,
LongArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
OpenFloatLongHashMap.pairsMatching(FloatLongProcedure condition,
FloatArrayList keyList,
LongArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractLongFloatMap.pairsMatching(LongFloatProcedure condition,
LongArrayList keyList,
FloatArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
OpenLongFloatHashMap.pairsMatching(LongFloatProcedure condition,
LongArrayList keyList,
FloatArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractFloatLongMap.pairsSortedByKey(FloatArrayList keyList,
LongArrayList valueList)
Fills all keys and values sorted ascending by key into the
specified lists.
|
void |
AbstractLongFloatMap.pairsSortedByKey(LongArrayList keyList,
FloatArrayList valueList)
Fills all keys and values sorted ascending by key into the
specified lists.
|
void |
AbstractFloatLongMap.pairsSortedByValue(FloatArrayList keyList,
LongArrayList valueList)
Fills all keys and values sorted ascending by value into the
specified lists.
|
void |
AbstractLongFloatMap.pairsSortedByValue(LongArrayList keyList,
FloatArrayList valueList)
Fills all keys and values sorted ascending by value into the
specified lists.
|
void |
AbstractFloatLongMap.values(LongArrayList list)
Fills all values contained in the receiver into the specified list.
|
void |
OpenFloatLongHashMap.values(LongArrayList list)
Fills all values contained in the receiver into the specified list.
|
Modifier and Type | Method and Description |
---|---|
LongArrayList |
AbstractLongIntMap.keys()
Returns a list filled with all keys contained in the receiver.
|
LongArrayList |
AbstractLongLongMap.keys()
Returns a list filled with all keys contained in the receiver.
|
LongArrayList |
AbstractIntLongMap.values()
Returns a list filled with all values contained in the receiver.
|
LongArrayList |
AbstractLongLongMap.values()
Returns a list filled with all values contained in the receiver.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractLongIntMap.keys(LongArrayList list)
Fills all keys contained in the receiver into the specified list.
|
void |
OpenLongIntHashMap.keys(LongArrayList list)
Fills all keys contained in the receiver into the specified list.
|
void |
AbstractLongLongMap.keys(LongArrayList list)
Fills all keys contained in the receiver into the specified list.
|
void |
OpenLongLongHashMap.keys(LongArrayList list)
Fills all keys contained in the receiver into the specified list.
|
void |
AbstractLongIntMap.keysSortedByValue(LongArrayList keyList)
Fills all keys sorted ascending by their associated value into the
specified list.
|
void |
AbstractLongLongMap.keysSortedByValue(LongArrayList keyList)
Fills all keys sorted ascending by their associated value into the
specified list.
|
void |
AbstractIntLongMap.pairsMatching(IntLongProcedure condition,
IntArrayList keyList,
LongArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
OpenIntLongHashMap.pairsMatching(IntLongProcedure condition,
IntArrayList keyList,
LongArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractLongIntMap.pairsMatching(LongIntProcedure condition,
LongArrayList keyList,
IntArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
OpenLongIntHashMap.pairsMatching(LongIntProcedure condition,
LongArrayList keyList,
IntArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractLongLongMap.pairsMatching(LongLongProcedure condition,
LongArrayList keyList,
LongArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
OpenLongLongHashMap.pairsMatching(LongLongProcedure condition,
LongArrayList keyList,
LongArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractIntLongMap.pairsSortedByKey(IntArrayList keyList,
LongArrayList valueList)
Fills all keys and values sorted ascending by key into the
specified lists.
|
void |
AbstractLongIntMap.pairsSortedByKey(LongArrayList keyList,
IntArrayList valueList)
Fills all keys and values sorted ascending by key into the
specified lists.
|
void |
AbstractLongLongMap.pairsSortedByKey(LongArrayList keyList,
LongArrayList valueList)
Fills all keys and values sorted ascending by key into the
specified lists.
|
void |
AbstractIntLongMap.pairsSortedByValue(IntArrayList keyList,
LongArrayList valueList)
Fills all keys and values sorted ascending by value into the
specified lists.
|
void |
AbstractLongIntMap.pairsSortedByValue(LongArrayList keyList,
IntArrayList valueList)
Fills all keys and values sorted ascending by value into the
specified lists.
|
void |
AbstractLongLongMap.pairsSortedByValue(LongArrayList keyList,
LongArrayList valueList)
Fills all keys and values sorted ascending by value into the
specified lists.
|
void |
AbstractIntLongMap.values(LongArrayList list)
Fills all values contained in the receiver into the specified list.
|
void |
OpenIntLongHashMap.values(LongArrayList list)
Fills all values contained in the receiver into the specified list.
|
void |
AbstractLongLongMap.values(LongArrayList list)
Fills all values contained in the receiver into the specified list.
|
void |
OpenLongLongHashMap.values(LongArrayList list)
Fills all values contained in the receiver into the specified list.
|
Modifier and Type | Method and Description |
---|---|
LongArrayList |
AbstractLongObjectMap.keys()
Returns a list filled with all keys contained in the receiver.
|
Modifier and Type | Method and Description |
---|---|
void |
OpenLongObjectHashMap.keys(LongArrayList list)
Fills all keys contained in the receiver into the specified list.
|
void |
AbstractLongObjectMap.keys(LongArrayList list)
Fills all keys contained in the receiver into the specified list.
|
void |
AbstractLongObjectMap.keysSortedByValue(LongArrayList keyList)
Fills all keys sorted ascending by their associated value into the
specified list.
|
void |
OpenLongObjectHashMap.pairsMatching(LongObjectProcedure condition,
LongArrayList keyList,
ObjectArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractLongObjectMap.pairsMatching(LongObjectProcedure condition,
LongArrayList keyList,
ObjectArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractLongObjectMap.pairsSortedByKey(LongArrayList keyList,
ObjectArrayList valueList)
Fills all keys and values sorted ascending by key into the
specified lists.
|
void |
AbstractLongObjectMap.pairsSortedByValue(LongArrayList keyList,
ObjectArrayList valueList)
Fills all keys and values sorted ascending by value according to
natural ordering into the specified lists.
|
Modifier and Type | Method and Description |
---|---|
LongArrayList |
LongFactory1D.toList(LongMatrix1D values)
Constructs a list from the given matrix.
|
Modifier and Type | Method and Description |
---|---|
void |
LongMatrix3D.getNegativeValues(IntArrayList sliceList,
IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList)
Fills the coordinates and values of cells having negative values into the
specified lists.
|
void |
LongMatrix2D.getNegativeValues(IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList)
Fills the coordinates and values of cells having negative values into the
specified lists.
|
void |
LongMatrix1D.getNegativeValues(IntArrayList indexList,
LongArrayList valueList)
Fills the coordinates and values of cells having negative values into the
specified lists.
|
void |
LongMatrix3D.getNonZeros(IntArrayList sliceList,
IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList)
Fills the coordinates and values of cells having non-zero values into the
specified lists.
|
void |
LongMatrix2D.getNonZeros(IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList)
Fills the coordinates and values of cells having non-zero values into the
specified lists.
|
void |
LongMatrix1D.getNonZeros(IntArrayList indexList,
LongArrayList valueList)
Fills the coordinates and values of cells having non-zero values into the
specified lists.
|
void |
LongMatrix1D.getNonZeros(IntArrayList indexList,
LongArrayList valueList,
int maxCardinality)
Fills the coordinates and values of the first maxCardinality
cells having non-zero values into the specified lists.
|
void |
LongMatrix3D.getPositiveValues(IntArrayList sliceList,
IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList)
Fills the coordinates and values of cells having positive values into the
specified lists.
|
void |
LongMatrix2D.getPositiveValues(IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList)
Fills the coordinates and values of cells having positive values into the
specified lists.
|
void |
LongMatrix1D.getPositiveValues(IntArrayList indexList,
LongArrayList valueList)
Fills the coordinates and values of cells having positive values into the
specified lists.
|
Modifier and Type | Method and Description |
---|---|
void |
DenseLongMatrix3D.getNegativeValues(IntArrayList sliceList,
IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList) |
void |
DenseLongMatrix2D.getNegativeValues(IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList) |
void |
DenseColumnLongMatrix2D.getNegativeValues(IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList) |
void |
DenseLongMatrix1D.getNegativeValues(LongArrayList indexList,
LongArrayList valueList) |
void |
DenseLongMatrix3D.getNonZeros(IntArrayList sliceList,
IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList) |
void |
DenseLongMatrix2D.getNonZeros(IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList) |
void |
DenseColumnLongMatrix2D.getNonZeros(IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList) |
void |
DenseLongMatrix1D.getNonZeros(LongArrayList indexList,
LongArrayList valueList) |
void |
DenseLongMatrix3D.getPositiveValues(IntArrayList sliceList,
IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList) |
void |
DenseLongMatrix2D.getPositiveValues(IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList) |
void |
DenseColumnLongMatrix2D.getPositiveValues(IntArrayList rowList,
IntArrayList columnList,
LongArrayList valueList) |
void |
DenseLongMatrix1D.getPositiveValues(LongArrayList indexList,
LongArrayList valueList) |
Jump to the Parallel Colt Homepage