Gets the signed short value at a particular offset. @param off >= 0, < (size() - 1); offset to fetch @return signed short at that offset
(int off)
| 131 | * @return {@code signed short} at that offset |
| 132 | */ |
| 133 | public int getShort(int off) { |
| 134 | checkOffsets(off, off + 2); |
| 135 | return (getByte0(off) << 8) | getUnsignedByte0(off + 1); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Gets the {@code signed int} value at a particular offset. |
no test coverage detected