Interface CLongPointer
- All Superinterfaces:
ComparableWord, PointerBase, WordBase
A pointer to a 64-bit C primitive value.
- Since:
- 19.0
-
Method Summary
Modifier and TypeMethodDescriptionaddressOf(int index) Computes the address of the array element with the specified index, treating the pointer as an array of the C type.addressOf(SignedWord index) Computes the address of the array element with the specified index, treating the pointer as an array of the C type.longread()Reads the value at the pointer address.longread(int index) Reads the value of the array element with the specified index, treating the pointer as an array of the C type.longread(SignedWord index) Reads the value of the array element with the specified index, treating the pointer as an array of the C type.voidwrite(int index, long value) Writes the value of the array element with the specified index, treating the pointer as an array of the C type.voidwrite(long value) Writes the value at the pointer address.voidwrite(SignedWord index, long value) Writes the value of the array element with the specified index, treating the pointer as an array of the C type.Methods inherited from interface ComparableWord
equal, notEqualMethods inherited from interface PointerBase
isNonNull, isNull
-
Method Details
-
read
long read()Reads the value at the pointer address.- Since:
- 19.0
-
read
long read(int index) Reads the value of the array element with the specified index, treating the pointer as an array of the C type.- Since:
- 19.0
-
read
Reads the value of the array element with the specified index, treating the pointer as an array of the C type.- Since:
- 19.0
-
write
void write(long value) Writes the value at the pointer address.- Since:
- 19.0
-
write
void write(int index, long value) Writes the value of the array element with the specified index, treating the pointer as an array of the C type.- Since:
- 19.0
-
write
Writes the value of the array element with the specified index, treating the pointer as an array of the C type.- Since:
- 19.0
-
addressOf
Computes the address of the array element with the specified index, treating the pointer as an array of the C type.- Since:
- 19.0
-
addressOf
Computes the address of the array element with the specified index, treating the pointer as an array of the C type.- Since:
- 19.0
-