Gets the unsigned byte value at a particular offset. @param off >= 0, < size(); offset to fetch @return unsigned byte at that offset
(int off)
| 176 | * @return {@code unsigned byte} at that offset |
| 177 | */ |
| 178 | public int getUnsignedByte(int off) { |
| 179 | checkOffsets(off, off + 1); |
| 180 | return getUnsignedByte0(off); |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Gets the {@code unsigned short} value at a particular offset. |
no test coverage detected