Gets the unsigned short value at a particular offset. @param off >= 0, < (size() - 1); offset to fetch @return unsigned short at that offset
(int off)
| 187 | * @return {@code unsigned short} at that offset |
| 188 | */ |
| 189 | public int getUnsignedShort(int off) { |
| 190 | checkOffsets(off, off + 2); |
| 191 | return (getUnsignedByte0(off) << 8) | getUnsignedByte0(off + 1); |
| 192 | } |
| 193 | |
| 194 | /** |
| 195 | * Copies the contents of this instance into the given raw |
no test coverage detected