Function libbgs::util::carrying_mul
source · pub const fn carrying_mul(a: u128, b: u128) -> (u128, u128)
Expand description
Returns the product of a
and b
, as two 128-bit words.
The first element of the tuple is the high word, and the second is the low word.