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, putDouble
public 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()
Indexer
null
if nonepublic ShortIndexer reindex(Index index)
Indexer
public short get(long i)
ShortIndexer
array/buffer[index(i)]
get
in class ShortIndexer
public ShortIndexer get(long i, short[] s, int offset, int length)
ShortIndexer
this
where s[offset:offset + length] = array/buffer[index(i)]
get
in class ShortIndexer
public short get(long i, long j)
ShortIndexer
array/buffer[index(i, j)]
get
in class ShortIndexer
public ShortIndexer get(long i, long j, short[] s, int offset, int length)
ShortIndexer
this
where s[offset:offset + length] = array/buffer[index(i, j)]
get
in class ShortIndexer
public short get(long i, long j, long k)
ShortIndexer
array/buffer[index(i, j, k)]
get
in class ShortIndexer
public short get(long... indices)
ShortIndexer
array/buffer[index(indices)]
get
in class ShortIndexer
public ShortIndexer get(long[] indices, short[] s, int offset, int length)
ShortIndexer
this
where s[offset:offset + length] = array/buffer[index(indices)]
get
in class ShortIndexer
public ShortIndexer put(long i, short s)
ShortIndexer
this
where array/buffer[index(i)] = s
put
in class ShortIndexer
public ShortIndexer put(long i, short[] s, int offset, int length)
ShortIndexer
this
where array/buffer[index(i)] = s[offset:offset + length]
put
in class ShortIndexer
public ShortIndexer put(long i, long j, short s)
ShortIndexer
this
where array/buffer[index(i, j)] = s
put
in class ShortIndexer
public ShortIndexer put(long i, long j, short[] s, int offset, int length)
ShortIndexer
this
where array/buffer[index(i, j)] = s[offset:offset + length]
put
in class ShortIndexer
public ShortIndexer put(long i, long j, long k, short s)
ShortIndexer
this
where array/buffer[index(i, j, k)] = s
put
in class ShortIndexer
public ShortIndexer put(long[] indices, short s)
ShortIndexer
this
where array/buffer[index(indices)] = s
put
in class ShortIndexer
public ShortIndexer put(long[] indices, short[] s, int offset, int length)
ShortIndexer
this
where array/buffer[index(indices)] = s[offset:offset + length]
put
in class ShortIndexer
Copyright © 2024. All rights reserved.