Reads a little-endian 8-byte long from the beginning of the given array. @param b The array to read from. @return A long integer. @throws IndexOutOfBoundsException if the byte array is too small.
(final byte[] b)
| 490 | * @throws IndexOutOfBoundsException if the byte array is too small. |
| 491 | */ |
| 492 | public static long getLong(final byte[] b) { |
| 493 | return getLong(b, 0); |
| 494 | } |
| 495 | |
| 496 | /** |
| 497 | * Reads a little-endian 8-byte long from an offset in the given array. |
no outgoing calls