Module div

Module div 

Source
Expand description

Division and modulo operations for BigInt.

Implements constant-time binary long division algorithm.

Functionsยง

div
Divide two BigInt values, returning only the quotient.
div_assign
In-place division for dynamic BigInt.
div_rem
Divide two BigInt values, returning quotient and remainder.
rem
Compute the remainder of dividing two BigInt values.
rem_assign
In-place remainder for dynamic BigInt.