Read a native array of int64 of size arraySize from the given offset from this Pointer.
(long offset, int arraySize)
| 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}. |
no test coverage detected