deserializeU128 method
Implementation
BigInt deserializeU128() {
BigInt low = deserializeU64();
BigInt high = deserializeU64();
// combine the two 64-bit values and return (little endian)
return (high << 64) | low;
}
BigInt deserializeU128() {
BigInt low = deserializeU64();
BigInt high = deserializeU64();
// combine the two 64-bit values and return (little endian)
return (high << 64) | low;
}