public class IntBufferIndexer extends IntIndexer
IntBuffer.| Modifier and Type | Field and Description |
|---|---|
protected IntBuffer |
buffer
The backing buffer.
|
VALUE_BYTESindexable, ONE_STRIDE, sizes, strides| Constructor and Description |
|---|
IntBufferIndexer(IntBuffer buffer)
Calls
IntBufferIndexer(buffer, { buffer.limit() }, { 1 }). |
IntBufferIndexer(IntBuffer buffer,
long[] sizes,
long[] strides)
|
| Modifier and Type | Method and Description |
|---|---|
Buffer |
buffer()
Returns the backing buffer, 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, putDoubleprotected IntBuffer buffer
public IntBufferIndexer(IntBuffer buffer)
IntBufferIndexer(buffer, { buffer.limit() }, { 1 }).public IntBufferIndexer(IntBuffer buffer, long[] sizes, long[] strides)
public Buffer buffer()
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 © 2018. All rights reserved.