Uint128.mul64 constructor

Uint128.mul64(
  1. BigInt a,
  2. BigInt b
)

mul64 returns a * b.

Implementation

factory Uint128.mul64(BigInt a, BigInt b) {
  final (high, low) = Bits.mul64(a, b);
  return Uint128(low, high);
}