deserializeU128 method

BigInt deserializeU128()

Implementation

BigInt deserializeU128() {
  BigInt low = deserializeU64();
  BigInt high = deserializeU64();

  // combine the two 64-bit values and return (little endian)
  return (high << 64) | low;
}