Package | Description |
---|---|
org.bytedeco.javacpp |
Contains the main set of classes for JavaCPP at runtime.
|
Modifier and Type | Method and Description |
---|---|
BytePointer |
BytePointer.putBool(long i,
boolean b)
Sets the
bool value at the i-th byte in the native array. |
BytePointer |
BytePointer.putChar(long i,
char c)
Sets the
char value at the i-th byte in the native array. |
BytePointer |
BytePointer.putDouble(long i,
double d)
Sets the
double value at the i-th byte in the native array. |
BytePointer |
BytePointer.putFloat(long i,
float f)
Sets the
float value at the i-th byte in the native array. |
BytePointer |
BytePointer.putInt(long i,
int j)
Sets the
int value at the i-th byte in the native array. |
BytePointer |
BytePointer.putLong(long i,
long j)
Sets the
long value at the i-th byte in the native array. |
BytePointer |
BytePointer.putPointer(long i,
Pointer p)
Sets the
Pointer value at the i-th byte in the native array. |
BytePointer |
BytePointer.putShort(long i,
short s)
Sets the
short value at the i-th byte in the native array. |
Copyright © 2020. All rights reserved.