MCPcopy Create free account
hub / github.com/java-native-access/jna / getLongArray

Method getLongArray

src/com/sun/jna/Pointer.java:723–727  ·  view source on GitHub ↗

Read a native array of int64 of size arraySize from the given offset from this Pointer.

(long offset, int arraySize)

Source from the content-addressed store, hash-verified

721 given <code>offset</code> from this {@link Pointer}.
722 */
723 public long[] getLongArray(long offset, int arraySize) {
724 long[] buf = new long[arraySize];
725 read(offset, buf, 0, arraySize);
726 return buf;
727 }
728
729 /** Read a native array of float of size <code>arraySize</code> from the
730 given <code>offset</code> from this {@link Pointer}.

Callers 3

getValueMethod · 0.80
getValueMethod · 0.80
getSubwindowsMethod · 0.80

Calls 1

readMethod · 0.95

Tested by

no test coverage detected