Uses of Class
org.bytedeco.javacpp.indexer.CharIndexer

Packages that use CharIndexer
Package
Description
Contains classes for multidimensional access of arrays and buffers.
  • Uses of CharIndexer in org.bytedeco.javacpp.indexer

    Modifier and Type
    Class
    Description
    class 
    An indexer for a char[] array.
    class 
    An indexer for a CharBuffer.
    class 
    An indexer for a CharPointer using the Raw instance.
    Modifier and Type
    Method
    Description
    CharIndexer.create(char[] array)
    Returns new CharArrayIndexer(array)
    CharIndexer.create(char[] array, long... sizes)
    Returns new CharArrayIndexer(array, sizes)
    CharIndexer.create(char[] array, long[] sizes, long[] strides)
    Returns new CharArrayIndexer(array, sizes, strides)
    CharIndexer.create(char[] array, Index index)
    Returns new CharArrayIndexer(array, index)
    CharIndexer.create(CharBuffer buffer)
    Returns new CharBufferIndexer(buffer)
    CharIndexer.create(CharBuffer buffer, long... sizes)
    Returns new CharBufferIndexer(buffer, sizes)
    CharIndexer.create(CharBuffer buffer, long[] sizes, long[] strides)
    Returns new CharBufferIndexer(buffer, sizes, strides)
    CharIndexer.create(CharBuffer buffer, Index index)
    Returns new CharBufferIndexer(buffer, index)
    CharIndexer.create(CharPointer pointer)
    Returns new CharRawIndexer(pointer)
    CharIndexer.create(CharPointer pointer, long... sizes)
    Returns new CharRawIndexer(pointer, sizes)
    CharIndexer.create(CharPointer pointer, long[] sizes, long[] strides)
    Returns new CharRawIndexer(pointer, sizes, strides)
    CharIndexer.create(CharPointer pointer, long[] sizes, long[] strides, boolean direct)
    Returns create(pointer, Index.create(sizes, strides), direct)
    CharIndexer.create(CharPointer pointer, Index index)
    Returns new CharRawIndexer(pointer, index)
    CharIndexer.create(CharPointer pointer, Index index, boolean direct)
    Creates a char indexer to access efficiently the data of a pointer.
    CharArrayIndexer.get(long[] indices, char[] c, int offset, int length)
     
    CharArrayIndexer.get(long i, char[] c, int offset, int length)
     
    CharArrayIndexer.get(long i, long j, char[] c, int offset, int length)
     
    CharBufferIndexer.get(long[] indices, char[] c, int offset, int length)
     
    CharBufferIndexer.get(long i, char[] c, int offset, int length)
     
    CharBufferIndexer.get(long i, long j, char[] c, int offset, int length)
     
    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.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.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)]
    CharRawIndexer.get(long[] indices, char[] c, int offset, int length)
     
    CharRawIndexer.get(long i, char[] c, int offset, int length)
     
    CharRawIndexer.get(long i, long j, char[] c, int offset, int length)
     
    CharArrayIndexer.put(long[] indices, char c)
     
    CharArrayIndexer.put(long[] indices, char[] c, int offset, int length)
     
    CharArrayIndexer.put(long i, char c)
     
    CharArrayIndexer.put(long i, char[] c, int offset, int length)
     
    CharArrayIndexer.put(long i, long j, char c)
     
    CharArrayIndexer.put(long i, long j, char[] c, int offset, int length)
     
    CharArrayIndexer.put(long i, long j, long k, char c)
     
    CharBufferIndexer.put(long[] indices, char c)
     
    CharBufferIndexer.put(long[] indices, char[] c, int offset, int length)
     
    CharBufferIndexer.put(long i, char c)
     
    CharBufferIndexer.put(long i, char[] c, int offset, int length)
     
    CharBufferIndexer.put(long i, long j, char c)
     
    CharBufferIndexer.put(long i, long j, char[] c, int offset, int length)
     
    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.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.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.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
    CharRawIndexer.put(long[] indices, char c)
     
    CharRawIndexer.put(long[] indices, char[] c, int offset, int length)
     
    CharRawIndexer.put(long i, char c)
     
    CharRawIndexer.put(long i, char[] c, int offset, int length)
     
    CharRawIndexer.put(long i, long j, char c)
     
    CharRawIndexer.put(long i, long j, char[] c, int offset, int length)
     
    CharRawIndexer.put(long i, long j, long k, char c)
     
    CharIndexer.putDouble(long[] indices, double c)
     
    CharRawIndexer.putRaw(long i, char c)
     
    CharArrayIndexer.reindex(Index index)
     
    CharBufferIndexer.reindex(Index index)
     
    CharRawIndexer.reindex(Index index)