getUint method
Reads a region of the buffer as an unsigned integer
.
Items are read from the range [offset : offset+length]
.
The range must satisy the relations 0
≤ offset
≤ offset+length
≤ this.length
.
Implementation
int getUint(final int length) {
final int value = buffer.getUint(offset, length);
offset += length;
return value;
}