public class IntArrayIndexer extends IntIndexer
int[] array.| Modifier and Type | Field and Description |
|---|---|
protected int[] |
array
The backing array.
|
VALUE_BYTESindexable, ONE_STRIDE, sizes, strides| Constructor and Description |
|---|
IntArrayIndexer(int[] array)
Calls
IntArrayIndexer(array, { array.length }, { 1 }). |
IntArrayIndexer(int[] array,
long[] sizes,
long[] strides)
|
| Modifier and Type | Method and Description |
|---|---|
int[] |
array()
Returns the backing array, or
null if none |
int |
get(long... indices)
Returns
array/buffer[index(indices)] |
int |
get(long i)
Returns
array/buffer[i] |
IntIndexer |
get(long[] indices,
int[] m,
int offset,
int length)
Returns
this where n[offset:offset + length] = array/buffer[index(indices)] |
IntIndexer |
get(long i,
int[] m,
int offset,
int length)
Returns
this where n[offset:offset + length] = array/buffer[i] |
int |
get(long i,
long j)
Returns
array/buffer[i * strides[0] + j] |
IntIndexer |
get(long i,
long j,
int[] m,
int offset,
int length)
Returns
this where n[offset:offset + length] = array/buffer[i * strides[0] + j] |
int |
get(long i,
long j,
long k)
Returns
array/buffer[i * strides[0] + j * strides[1] + k] |
IntIndexer |
put(long[] indices,
int n)
Returns
this where array/buffer[index(indices)] = n |
IntIndexer |
put(long[] indices,
int[] m,
int offset,
int length)
Returns
this where array/buffer[index(indices)] = n[offset:offset + length] |
IntIndexer |
put(long i,
int n)
Returns
this where array/buffer[i] = n |
IntIndexer |
put(long i,
int[] m,
int offset,
int length)
Returns
this where array/buffer[i] = n[offset:offset + length] |
IntIndexer |
put(long i,
long j,
int n)
Returns
this where array/buffer[i * strides[0] + j] = n |
IntIndexer |
put(long i,
long j,
int[] m,
int offset,
int length)
Returns
this where array/buffer[i * strides[0] + j] = n[offset:offset + length] |
IntIndexer |
put(long i,
long j,
long k,
int n)
Returns
this where array/buffer[i * strides[0] + j * strides[1] + k] = n |
void |
release()
Makes sure changes are reflected onto the backing memory and clears any references.
|
create, create, create, create, create, create, create, get, get, get, getDouble, put, put, put, putDoublepublic IntArrayIndexer(int[] array)
IntArrayIndexer(array, { array.length }, { 1 }).public IntArrayIndexer(int[] array,
long[] sizes,
long[] strides)
public int[] array()
Indexernull if nonepublic int get(long i)
IntIndexerarray/buffer[i]get in class IntIndexerpublic IntIndexer get(long i, int[] m, int offset, int length)
IntIndexerthis where n[offset:offset + length] = array/buffer[i]get in class IntIndexerpublic int get(long i,
long j)
IntIndexerarray/buffer[i * strides[0] + j]get in class IntIndexerpublic IntIndexer get(long i, long j, int[] m, int offset, int length)
IntIndexerthis where n[offset:offset + length] = array/buffer[i * strides[0] + j]get in class IntIndexerpublic int get(long i,
long j,
long k)
IntIndexerarray/buffer[i * strides[0] + j * strides[1] + k]get in class IntIndexerpublic int get(long... indices)
IntIndexerarray/buffer[index(indices)]get in class IntIndexerpublic IntIndexer get(long[] indices, int[] m, int offset, int length)
IntIndexerthis where n[offset:offset + length] = array/buffer[index(indices)]get in class IntIndexerpublic IntIndexer put(long i, int n)
IntIndexerthis where array/buffer[i] = nput in class IntIndexerpublic IntIndexer put(long i, int[] m, int offset, int length)
IntIndexerthis where array/buffer[i] = n[offset:offset + length]put in class IntIndexerpublic IntIndexer put(long i, long j, int n)
IntIndexerthis where array/buffer[i * strides[0] + j] = nput in class IntIndexerpublic IntIndexer put(long i, long j, int[] m, int offset, int length)
IntIndexerthis where array/buffer[i * strides[0] + j] = n[offset:offset + length]put in class IntIndexerpublic IntIndexer put(long i, long j, long k, int n)
IntIndexerthis where array/buffer[i * strides[0] + j * strides[1] + k] = nput in class IntIndexerpublic IntIndexer put(long[] indices, int n)
IntIndexerthis where array/buffer[index(indices)] = nput in class IntIndexerpublic IntIndexer put(long[] indices, int[] m, int offset, int length)
IntIndexerthis where array/buffer[index(indices)] = n[offset:offset + length]put in class IntIndexerCopyright © 2016. All rights reserved.