public class ULongRawIndexer extends ULongIndexer
LongPointer using the Raw instance, treated as unsigned.Indexer.Index| Modifier and Type | Field and Description |
|---|---|
protected LongPointer |
pointer
The backing pointer.
|
protected static org.bytedeco.javacpp.indexer.Raw |
RAW
The instance for the raw memory interface.
|
VALUE_BYTES| Constructor and Description |
|---|
ULongRawIndexer(LongPointer pointer)
Calls
ULongRawIndexer(pointer, { pointer.limit() - pointer.position() }, { 1 }). |
ULongRawIndexer(LongPointer pointer,
long... sizes)
Calls
ULongRawIndexer(pointer, sizes, strides(sizes)). |
ULongRawIndexer(LongPointer pointer,
long[] sizes,
long[] strides)
|
| Modifier and Type | Method and Description |
|---|---|
java.math.BigInteger |
get(long... indices)
Returns
array/buffer[index(indices)] |
java.math.BigInteger |
get(long i)
Returns
array/buffer[index(i)] |
ULongIndexer |
get(long[] indices,
java.math.BigInteger[] l,
int offset,
int length)
Returns
this where l[offset:offset + length] = array/buffer[index(indices)] |
ULongIndexer |
get(long i,
java.math.BigInteger[] l,
int offset,
int length)
Returns
this where l[offset:offset + length] = array/buffer[index(i)] |
java.math.BigInteger |
get(long i,
long j)
Returns
array/buffer[index(i, j)] |
ULongIndexer |
get(long i,
long j,
java.math.BigInteger[] l,
int offset,
int length)
Returns
this where l[offset:offset + length] = array/buffer[index(i, j)] |
java.math.BigInteger |
get(long i,
long j,
long k)
Returns
array/buffer[index(i, j, k)] |
java.math.BigInteger |
getRaw(long i) |
Pointer |
pointer()
Returns the backing pointer, or
null if none |
ULongIndexer |
put(long[] indices,
java.math.BigInteger l)
Returns
this where array/buffer[index(indices)] = l |
ULongIndexer |
put(long[] indices,
java.math.BigInteger[] l,
int offset,
int length)
Returns
this where array/buffer[index(indices)] = l[offset:offset + length] |
ULongIndexer |
put(long i,
java.math.BigInteger l)
Returns
this where array/buffer[index(i)] = l |
ULongIndexer |
put(long i,
java.math.BigInteger[] l,
int offset,
int length)
Returns
this where array/buffer[index(i)] = l[offset:offset + length] |
ULongIndexer |
put(long i,
long j,
java.math.BigInteger l)
Returns
this where array/buffer[index(i, j)] = l |
ULongIndexer |
put(long i,
long j,
java.math.BigInteger[] l,
int offset,
int length)
Returns
this where array/buffer[index(i, j)] = l[offset:offset + length] |
ULongIndexer |
put(long i,
long j,
long k,
java.math.BigInteger l)
Returns
this where array/buffer[index(i, j, k)] = l |
ULongIndexer |
putRaw(long i,
java.math.BigInteger l) |
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, fromBigInteger, get, get, get, getDouble, put, put, put, putDouble, toBigIntegerprotected static final org.bytedeco.javacpp.indexer.Raw RAW
protected LongPointer pointer
public ULongRawIndexer(LongPointer pointer)
ULongRawIndexer(pointer, { pointer.limit() - pointer.position() }, { 1 }).public ULongRawIndexer(LongPointer pointer, long... sizes)
ULongRawIndexer(pointer, sizes, strides(sizes)).public ULongRawIndexer(LongPointer pointer, long[] sizes, long[] strides)
public Pointer pointer()
Indexernull if nonepublic java.math.BigInteger getRaw(long i)
public java.math.BigInteger get(long i)
ULongIndexerarray/buffer[index(i)]get in class ULongIndexerpublic ULongIndexer get(long i, java.math.BigInteger[] l, int offset, int length)
ULongIndexerthis where l[offset:offset + length] = array/buffer[index(i)]get in class ULongIndexerpublic java.math.BigInteger get(long i,
long j)
ULongIndexerarray/buffer[index(i, j)]get in class ULongIndexerpublic ULongIndexer get(long i, long j, java.math.BigInteger[] l, int offset, int length)
ULongIndexerthis where l[offset:offset + length] = array/buffer[index(i, j)]get in class ULongIndexerpublic java.math.BigInteger get(long i,
long j,
long k)
ULongIndexerarray/buffer[index(i, j, k)]get in class ULongIndexerpublic java.math.BigInteger get(long... indices)
ULongIndexerarray/buffer[index(indices)]get in class ULongIndexerpublic ULongIndexer get(long[] indices, java.math.BigInteger[] l, int offset, int length)
ULongIndexerthis where l[offset:offset + length] = array/buffer[index(indices)]get in class ULongIndexerpublic ULongIndexer putRaw(long i, java.math.BigInteger l)
public ULongIndexer put(long i, java.math.BigInteger l)
ULongIndexerthis where array/buffer[index(i)] = lput in class ULongIndexerpublic ULongIndexer put(long i, java.math.BigInteger[] l, int offset, int length)
ULongIndexerthis where array/buffer[index(i)] = l[offset:offset + length]put in class ULongIndexerpublic ULongIndexer put(long i, long j, java.math.BigInteger l)
ULongIndexerthis where array/buffer[index(i, j)] = lput in class ULongIndexerpublic ULongIndexer put(long i, long j, java.math.BigInteger[] l, int offset, int length)
ULongIndexerthis where array/buffer[index(i, j)] = l[offset:offset + length]put in class ULongIndexerpublic ULongIndexer put(long i, long j, long k, java.math.BigInteger l)
ULongIndexerthis where array/buffer[index(i, j, k)] = lput in class ULongIndexerpublic ULongIndexer put(long[] indices, java.math.BigInteger l)
ULongIndexerthis where array/buffer[index(indices)] = lput in class ULongIndexerpublic ULongIndexer put(long[] indices, java.math.BigInteger[] l, int offset, int length)
ULongIndexerthis where array/buffer[index(indices)] = l[offset:offset + length]put in class ULongIndexer