getBigUint method
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 0
≤ offset
≤ offset+length
≤ this.length
.
Implementation
BigInt getBigUint(final int length) {
final BigInt value = buffer.getBigUint(offset, length);
offset += length;
return value;
}