Uses of Class
org.bytedeco.javacpp.indexer.UIntIndexer
Packages that use UIntIndexer
Package
Description
Contains classes for multidimensional access of arrays and buffers.
-
Uses of UIntIndexer in org.bytedeco.javacpp.indexer
Subclasses of UIntIndexer in org.bytedeco.javacpp.indexerModifier and TypeClassDescriptionclass
An indexer for aint[]
array, treated as unsigned.class
An indexer for aIntBuffer
, treated as unsigned.class
An indexer for aIntPointer
using theRaw
instance, treated as unsigned.Methods in org.bytedeco.javacpp.indexer that return UIntIndexerModifier and TypeMethodDescriptionstatic UIntIndexer
UIntIndexer.create
(int[] array) Returnsnew UIntArrayIndexer(array)
static UIntIndexer
UIntIndexer.create
(int[] array, long... sizes) Returnsnew UIntArrayIndexer(array, sizes)
static UIntIndexer
UIntIndexer.create
(int[] array, long[] sizes, long[] strides) Returnsnew UIntArrayIndexer(array, sizes, strides)
static UIntIndexer
Returnsnew UIntArrayIndexer(array, index)
static UIntIndexer
Returnsnew UIntBufferIndexer(buffer)
static UIntIndexer
Returnsnew UIntBufferIndexer(buffer, sizes)
static UIntIndexer
Returnsnew UIntBufferIndexer(buffer, sizes, strides)
static UIntIndexer
Returnsnew UIntBufferIndexer(buffer, index)
static UIntIndexer
UIntIndexer.create
(IntPointer pointer) Returnsnew UIntRawIndexer(pointer)
static UIntIndexer
UIntIndexer.create
(IntPointer pointer, long... sizes) Returnsnew UIntRawIndexer(pointer, sizes)
static UIntIndexer
UIntIndexer.create
(IntPointer pointer, long[] sizes, long[] strides) Returnsnew UIntRawIndexer(pointer, sizes, strides)
static UIntIndexer
UIntIndexer.create
(IntPointer pointer, long[] sizes, long[] strides, boolean direct) Returnscreate(pointer, Index.create(sizes, strides), direct)
static UIntIndexer
UIntIndexer.create
(IntPointer pointer, Index index) Returnsnew UIntRawIndexer(pointer, index)
static UIntIndexer
UIntIndexer.create
(IntPointer pointer, Index index, boolean direct) Creates a int indexer to access efficiently the data of a pointer.UIntArrayIndexer.get
(long[] indices, long[] m, int offset, int length) UIntArrayIndexer.get
(long i, long[] m, int offset, int length) UIntArrayIndexer.get
(long i, long j, long[] m, int offset, int length) UIntBufferIndexer.get
(long[] indices, long[] m, int offset, int length) UIntBufferIndexer.get
(long i, long[] m, int offset, int length) UIntBufferIndexer.get
(long i, long j, long[] m, int offset, int length) UIntIndexer.get
(long[] indices, long[] n) Returnsthis
wheren = array/buffer[index(indices)]
abstract UIntIndexer
UIntIndexer.get
(long[] indices, long[] n, int offset, int length) Returnsthis
wheren[offset:offset + length] = array/buffer[index(indices)]
UIntIndexer.get
(long i, long[] n) Returnsthis
wheren = array/buffer[index(i)]
abstract UIntIndexer
UIntIndexer.get
(long i, long[] n, int offset, int length) Returnsthis
wheren[offset:offset + length] = array/buffer[index(i)]
UIntIndexer.get
(long i, long j, long[] n) Returnsthis
wheren = array/buffer[index(i, j)]
abstract UIntIndexer
UIntIndexer.get
(long i, long j, long[] n, int offset, int length) Returnsthis
wheren[offset:offset + length] = array/buffer[index(i, j)]
UIntRawIndexer.get
(long[] indices, long[] m, int offset, int length) UIntRawIndexer.get
(long i, long[] m, int offset, int length) UIntRawIndexer.get
(long i, long j, long[] m, int offset, int length) UIntArrayIndexer.put
(long[] indices, long n) UIntArrayIndexer.put
(long[] indices, long[] m, int offset, int length) UIntArrayIndexer.put
(long i, long n) UIntArrayIndexer.put
(long i, long[] m, int offset, int length) UIntArrayIndexer.put
(long i, long j, long n) UIntArrayIndexer.put
(long i, long j, long[] m, int offset, int length) UIntArrayIndexer.put
(long i, long j, long k, long n) UIntBufferIndexer.put
(long[] indices, long n) UIntBufferIndexer.put
(long[] indices, long[] m, int offset, int length) UIntBufferIndexer.put
(long i, long n) UIntBufferIndexer.put
(long i, long[] m, int offset, int length) UIntBufferIndexer.put
(long i, long j, long n) UIntBufferIndexer.put
(long i, long j, long[] m, int offset, int length) UIntBufferIndexer.put
(long i, long j, long k, long n) abstract UIntIndexer
UIntIndexer.put
(long[] indices, long n) Returnsthis
wherearray/buffer[index(indices)] = n
UIntIndexer.put
(long[] indices, long... n) Returnsthis
wherearray/buffer[index(indices)] = n
abstract UIntIndexer
UIntIndexer.put
(long[] indices, long[] n, int offset, int length) Returnsthis
wherearray/buffer[index(indices)] = n[offset:offset + length]
abstract UIntIndexer
UIntIndexer.put
(long i, long n) Returnsthis
wherearray/buffer[index(i)] = n
UIntIndexer.put
(long i, long... n) Returnsthis
wherearray/buffer[index(i)] = n
abstract UIntIndexer
UIntIndexer.put
(long i, long[] n, int offset, int length) Returnsthis
wherearray/buffer[index(i)] = n[offset:offset + length]
abstract UIntIndexer
UIntIndexer.put
(long i, long j, long n) Returnsthis
wherearray/buffer[index(i, j)] = n
UIntIndexer.put
(long i, long j, long... n) Returnsthis
wherearray/buffer[index(i, j)] = n
abstract UIntIndexer
UIntIndexer.put
(long i, long j, long[] n, int offset, int length) Returnsthis
wherearray/buffer[index(i, j)] = n[offset:offset + length]
abstract UIntIndexer
UIntIndexer.put
(long i, long j, long k, long n) Returnsthis
wherearray/buffer[index(i, j, k)] = n
UIntRawIndexer.put
(long[] indices, long n) UIntRawIndexer.put
(long[] indices, long[] m, int offset, int length) UIntRawIndexer.put
(long i, long n) UIntRawIndexer.put
(long i, long[] m, int offset, int length) UIntRawIndexer.put
(long i, long j, long n) UIntRawIndexer.put
(long i, long j, long[] m, int offset, int length) UIntRawIndexer.put
(long i, long j, long k, long n) UIntIndexer.putDouble
(long[] indices, double n) UIntRawIndexer.putRaw
(long i, long n)