getUint method

int getUint(
  1. int length
)

Implementation

int getUint(final int length) {
  final int value = buffer.getUint(offset, length);
  offset += length;
  return value;
}