Read a native array of int32 of size arraySize from the given offset from this Pointer.
(long offset, int arraySize)
| 712 | given <code>offset</code> from this {@link Pointer}. |
| 713 | */ |
| 714 | public int[] getIntArray(long offset, int arraySize) { |
| 715 | int[] buf = new int[arraySize]; |
| 716 | read(offset, buf, 0, arraySize); |
| 717 | return buf; |
| 718 | } |
| 719 | |
| 720 | /** Read a native array of int64 of size <code>arraySize</code> from the |
| 721 | given <code>offset</code> from this {@link Pointer}. |