static CharIndexer |
CharIndexer.create(char[] array) |
Returns new CharArrayIndexer(array)
|
static CharIndexer |
CharIndexer.create(char[] array,
long... sizes) |
Returns new CharArrayIndexer(array, sizes)
|
static CharIndexer |
CharIndexer.create(char[] array,
long[] sizes,
long[] strides) |
Returns new CharArrayIndexer(array, sizes, strides)
|
static CharIndexer |
CharIndexer.create(char[] array,
Index index) |
Returns new CharArrayIndexer(array, index)
|
static CharIndexer |
CharIndexer.create(java.nio.CharBuffer buffer) |
Returns new CharBufferIndexer(buffer)
|
static CharIndexer |
CharIndexer.create(java.nio.CharBuffer buffer,
long... sizes) |
Returns new CharBufferIndexer(buffer, sizes)
|
static CharIndexer |
CharIndexer.create(java.nio.CharBuffer buffer,
long[] sizes,
long[] strides) |
Returns new CharBufferIndexer(buffer, sizes, strides)
|
static CharIndexer |
CharIndexer.create(java.nio.CharBuffer buffer,
Index index) |
Returns new CharBufferIndexer(buffer, index)
|
static CharIndexer |
CharIndexer.create(CharPointer pointer) |
Returns new CharRawIndexer(pointer)
|
static CharIndexer |
CharIndexer.create(CharPointer pointer,
long... sizes) |
Returns new CharRawIndexer(pointer, sizes)
|
static CharIndexer |
CharIndexer.create(CharPointer pointer,
long[] sizes,
long[] strides) |
Returns new CharRawIndexer(pointer, sizes, strides)
|
static CharIndexer |
CharIndexer.create(CharPointer pointer,
long[] sizes,
long[] strides,
boolean direct) |
Returns create(pointer, Index.create(sizes, strides), direct)
|
static CharIndexer |
CharIndexer.create(CharPointer pointer,
Index index) |
Returns new CharRawIndexer(pointer, index)
|
static CharIndexer |
CharIndexer.create(CharPointer pointer,
Index index,
boolean direct) |
Creates a char indexer to access efficiently the data of a pointer.
|
CharIndexer |
CharArrayIndexer.get(long[] indices,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharArrayIndexer.get(long i,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharArrayIndexer.get(long i,
long j,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharBufferIndexer.get(long[] indices,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharBufferIndexer.get(long i,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharBufferIndexer.get(long i,
long j,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharIndexer.get(long[] indices,
char[] c) |
Returns this where c = array/buffer[index(indices)]
|
abstract CharIndexer |
CharIndexer.get(long[] indices,
char[] c,
int offset,
int length) |
Returns this where c[offset:offset + length] = array/buffer[index(indices)]
|
CharIndexer |
CharIndexer.get(long i,
char[] c) |
Returns this where c = array/buffer[index(i)]
|
abstract CharIndexer |
CharIndexer.get(long i,
char[] c,
int offset,
int length) |
Returns this where c[offset:offset + length] = array/buffer[index(i)]
|
CharIndexer |
CharIndexer.get(long i,
long j,
char[] c) |
Returns this where c = array/buffer[index(i, j)]
|
abstract CharIndexer |
CharIndexer.get(long i,
long j,
char[] c,
int offset,
int length) |
Returns this where c[offset:offset + length] = array/buffer[index(i, j)]
|
CharIndexer |
CharRawIndexer.get(long[] indices,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharRawIndexer.get(long i,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharRawIndexer.get(long i,
long j,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharArrayIndexer.put(long[] indices,
char c) |
|
CharIndexer |
CharArrayIndexer.put(long[] indices,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharArrayIndexer.put(long i,
char c) |
|
CharIndexer |
CharArrayIndexer.put(long i,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharArrayIndexer.put(long i,
long j,
char c) |
|
CharIndexer |
CharArrayIndexer.put(long i,
long j,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharArrayIndexer.put(long i,
long j,
long k,
char c) |
|
CharIndexer |
CharBufferIndexer.put(long[] indices,
char c) |
|
CharIndexer |
CharBufferIndexer.put(long[] indices,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharBufferIndexer.put(long i,
char c) |
|
CharIndexer |
CharBufferIndexer.put(long i,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharBufferIndexer.put(long i,
long j,
char c) |
|
CharIndexer |
CharBufferIndexer.put(long i,
long j,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharBufferIndexer.put(long i,
long j,
long k,
char c) |
|
abstract CharIndexer |
CharIndexer.put(long[] indices,
char c) |
Returns this where array/buffer[index(indices)] = c
|
CharIndexer |
CharIndexer.put(long[] indices,
char... c) |
Returns this where array/buffer[index(indices)] = c
|
abstract CharIndexer |
CharIndexer.put(long[] indices,
char[] c,
int offset,
int length) |
Returns this where array/buffer[index(indices)] = c[offset:offset + length]
|
abstract CharIndexer |
CharIndexer.put(long i,
char c) |
Returns this where array/buffer[index(i)] = c
|
CharIndexer |
CharIndexer.put(long i,
char... c) |
Returns this where array/buffer[index(i)] = c
|
abstract CharIndexer |
CharIndexer.put(long i,
char[] c,
int offset,
int length) |
Returns this where array/buffer[index(i)] = c[offset:offset + length]
|
abstract CharIndexer |
CharIndexer.put(long i,
long j,
char c) |
Returns this where array/buffer[index(i, j)] = c
|
CharIndexer |
CharIndexer.put(long i,
long j,
char... c) |
Returns this where array/buffer[index(i, j)] = c
|
abstract CharIndexer |
CharIndexer.put(long i,
long j,
char[] c,
int offset,
int length) |
Returns this where array/buffer[index(i, j)] = c[offset:offset + length]
|
abstract CharIndexer |
CharIndexer.put(long i,
long j,
long k,
char c) |
Returns this where array/buffer[index(i, j, k)] = c
|
CharIndexer |
CharRawIndexer.put(long[] indices,
char c) |
|
CharIndexer |
CharRawIndexer.put(long[] indices,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharRawIndexer.put(long i,
char c) |
|
CharIndexer |
CharRawIndexer.put(long i,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharRawIndexer.put(long i,
long j,
char c) |
|
CharIndexer |
CharRawIndexer.put(long i,
long j,
char[] c,
int offset,
int length) |
|
CharIndexer |
CharRawIndexer.put(long i,
long j,
long k,
char c) |
|
CharIndexer |
CharIndexer.putDouble(long[] indices,
double c) |
|
CharIndexer |
CharRawIndexer.putRaw(long i,
char c) |
|
CharIndexer |
CharArrayIndexer.reindex(Index index) |
|
CharIndexer |
CharBufferIndexer.reindex(Index index) |
|
CharIndexer |
CharRawIndexer.reindex(Index index) |
|