public final class Array2<T>
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
int |
dim0 |
int |
dim1 |
java.lang.Object[] |
elmts |
| Constructor and Description |
|---|
Array2(TypeDescriptor<T> elmtType,
int dim0,
int dim1,
java.lang.Object[] elmts) |
| Modifier and Type | Method and Description |
|---|---|
static <T> TypeDescriptor<Array2<T>> |
_typeDescriptor() |
void |
fill(T z) |
Array2 |
fillThenReturn(T z) |
T |
get(int i0,
int i1) |
void |
set(int i0,
int i1,
T value) |
public final java.lang.Object[] elmts
public final int dim0
public final int dim1
public Array2(TypeDescriptor<T> elmtType, int dim0, int dim1, java.lang.Object[] elmts)