public class ShortArrayIndexer extends ShortIndexer
short[] array.| Modifier and Type | Field and Description |
|---|---|
protected short[] |
array
The backing array.
|
VALUE_BYTES| Constructor and Description |
|---|
ShortArrayIndexer(short[] array)
Calls
ShortArrayIndexer(array, Index.create(array.length)). |
ShortArrayIndexer(short[] array,
Index index)
Constructor to set the
array and Indexer.index. |
ShortArrayIndexer(short[] array,
long... sizes)
Calls
ShortArrayIndexer(array, Index.create(sizes)). |
ShortArrayIndexer(short[] array,
long[] sizes,
long[] strides)
Calls
ShortArrayIndexer(array, Index.create(sizes, strides)). |
| Modifier and Type | Method and Description |
|---|---|
short[] |
array()
Returns the backing array, or
null if none |
short |
get(long... indices)
Returns
array/buffer[index(indices)] |
short |
get(long i)
Returns
array/buffer[index(i)] |
ShortIndexer |
get(long[] indices,
short[] s,
int offset,
int length)
Returns
this where s[offset:offset + length] = array/buffer[index(indices)] |
short |
get(long i,
long j)
Returns
array/buffer[index(i, j)] |
short |
get(long i,
long j,
long k)
Returns
array/buffer[index(i, j, k)] |
ShortIndexer |
get(long i,
long j,
short[] s,
int offset,
int length)
Returns
this where s[offset:offset + length] = array/buffer[index(i, j)] |
ShortIndexer |
get(long i,
short[] s,
int offset,
int length)
Returns
this where s[offset:offset + length] = array/buffer[index(i)] |
ShortIndexer |
put(long[] indices,
short s)
Returns
this where array/buffer[index(indices)] = s |
ShortIndexer |
put(long[] indices,
short[] s,
int offset,
int length)
Returns
this where array/buffer[index(indices)] = s[offset:offset + length] |
ShortIndexer |
put(long i,
long j,
long k,
short s)
Returns
this where array/buffer[index(i, j, k)] = s |
ShortIndexer |
put(long i,
long j,
short s)
Returns
this where array/buffer[index(i, j)] = s |
ShortIndexer |
put(long i,
long j,
short[] s,
int offset,
int length)
Returns
this where array/buffer[index(i, j)] = s[offset:offset + length] |
ShortIndexer |
put(long i,
short s)
Returns
this where array/buffer[index(i)] = s |
ShortIndexer |
put(long i,
short[] s,
int offset,
int length)
Returns
this where array/buffer[index(i)] = s[offset:offset + length] |
ShortIndexer |
reindex(Index index)
Returns a new Indexer using the same data, but with a different Index.
|
void |
release()
Makes sure changes are reflected onto the backing memory and clears any references.
|
create, create, create, create, create, create, create, create, create, create, create, create, create, create, get, get, get, getDouble, put, put, put, putDoublepublic ShortArrayIndexer(short[] array)
ShortArrayIndexer(array, Index.create(array.length)).public ShortArrayIndexer(short[] array,
long... sizes)
ShortArrayIndexer(array, Index.create(sizes)).public ShortArrayIndexer(short[] array,
long[] sizes,
long[] strides)
ShortArrayIndexer(array, Index.create(sizes, strides)).public ShortArrayIndexer(short[] array,
Index index)
array and Indexer.index.public short[] array()
Indexernull if nonepublic ShortIndexer reindex(Index index)
Indexerpublic short get(long i)
ShortIndexerarray/buffer[index(i)]get in class ShortIndexerpublic ShortIndexer get(long i, short[] s, int offset, int length)
ShortIndexerthis where s[offset:offset + length] = array/buffer[index(i)]get in class ShortIndexerpublic short get(long i,
long j)
ShortIndexerarray/buffer[index(i, j)]get in class ShortIndexerpublic ShortIndexer get(long i, long j, short[] s, int offset, int length)
ShortIndexerthis where s[offset:offset + length] = array/buffer[index(i, j)]get in class ShortIndexerpublic short get(long i,
long j,
long k)
ShortIndexerarray/buffer[index(i, j, k)]get in class ShortIndexerpublic short get(long... indices)
ShortIndexerarray/buffer[index(indices)]get in class ShortIndexerpublic ShortIndexer get(long[] indices, short[] s, int offset, int length)
ShortIndexerthis where s[offset:offset + length] = array/buffer[index(indices)]get in class ShortIndexerpublic ShortIndexer put(long i, short s)
ShortIndexerthis where array/buffer[index(i)] = sput in class ShortIndexerpublic ShortIndexer put(long i, short[] s, int offset, int length)
ShortIndexerthis where array/buffer[index(i)] = s[offset:offset + length]put in class ShortIndexerpublic ShortIndexer put(long i, long j, short s)
ShortIndexerthis where array/buffer[index(i, j)] = sput in class ShortIndexerpublic ShortIndexer put(long i, long j, short[] s, int offset, int length)
ShortIndexerthis where array/buffer[index(i, j)] = s[offset:offset + length]put in class ShortIndexerpublic ShortIndexer put(long i, long j, long k, short s)
ShortIndexerthis where array/buffer[index(i, j, k)] = sput in class ShortIndexerpublic ShortIndexer put(long[] indices, short s)
ShortIndexerthis where array/buffer[index(indices)] = sput in class ShortIndexerpublic ShortIndexer put(long[] indices, short[] s, int offset, int length)
ShortIndexerthis where array/buffer[index(indices)] = s[offset:offset + length]put in class ShortIndexerCopyright © 2023. All rights reserved.