Read a native array of float of size arraySize from the given offset from this Pointer.
(long offset, int arraySize)
| 730 | given <code>offset</code> from this {@link Pointer}. |
| 731 | */ |
| 732 | public float[] getFloatArray(long offset, int arraySize) { |
| 733 | float[] buf = new float[arraySize]; |
| 734 | read(offset, buf, 0, arraySize); |
| 735 | return buf; |
| 736 | } |
| 737 | |
| 738 | /** Read a native array of double of size <code>arraySize</code> from the |
| 739 | given <code>offset</code> from this {@link Pointer}. |