public abstract class AbstractMatrix extends PersistentObject
int
, float
, etc. First
see the package summary and javadoc tree view to get the broad picture.
Note that this implementation is not synchronized.
Modifier and Type | Method and Description |
---|---|
void |
ensureCapacity(int minNonZeros)
Ensures that the receiver can hold at least the specified number of
non-zero (non-null) cells without needing to allocate new internal
memory.
|
boolean |
isView()
Returns whether the receiver is a view or not.
|
abstract long |
size()
Returns the number of cells.
|
void |
trimToSize()
Releases any superfluous internal memory.
|
clone
public void ensureCapacity(int minNonZeros)
This default implementation does nothing. Override this method if necessary.
minNonZeros
- the desired minimum number of non-zero (non-null) cells.public boolean isView()
public abstract long size()
public void trimToSize()
This default implementation does nothing. Override this method if necessary.
Jump to the Parallel Colt Homepage