| Package | Description |
|---|---|
| org.bytedeco.javacpp |
Contains the main set of classes for JavaCPP at runtime.
|
| org.bytedeco.javacpp.indexer |
Contains classes for multidimensional access of arrays and buffers.
|
| Modifier and Type | Method and Description |
|---|---|
IntPointer |
IntPointer.capacity(int capacity) |
IntPointer |
IntPointer.get(int[] array) |
IntPointer |
IntPointer.get(int[] array,
int offset,
int length)
Reads a portion of the native array into a Java array.
|
IntPointer |
IntPointer.limit(int limit) |
IntPointer |
IntPointer.position(int position) |
IntPointer |
IntPointer.put(int... array) |
IntPointer |
IntPointer.put(int j) |
IntPointer |
IntPointer.put(int[] array,
int offset,
int length)
Writes a portion of a Java array into the native array.
|
IntPointer |
IntPointer.put(int i,
int j)
Copies the
int value to the i-th element of a native array. |
IntPointer |
IntPointer.putString(String s)
Copies the String code points into native memory, including a terminating null int.
|
| Modifier and Type | Method and Description |
|---|---|
static IntIndexer |
IntIndexer.create(IntPointer pointer,
int[] sizes,
int[] strides) |
static IntIndexer |
IntIndexer.create(IntPointer pointer,
int[] sizes,
int[] strides,
boolean direct)
Creates a int indexer to access efficiently the data of a pointer.
|
Copyright © 2015. All Rights Reserved.