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.