getBigUint method

BigInt getBigUint(
  1. int length
)

Reads a region of the buffer as an unsigned big integer.

Items are read from the range [offset : offset+length].

The range must satisy the relations 0offsetoffset+lengththis.length.

Implementation

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