[src]

Module num::bigint

A Big integer (signed version: BigInt, unsigned version: BigUint).

A BigUint is represented as an array of BigDigits. A BigInt is a combination of BigUint and Sign.

BigDigit
BigInt

A big signed integer type.

BigUint

A big unsigned integer type.

Sign

A Sign is a BigInt's composing element.

pub static ZERO_BIG_DIGIT: BigDigit = 0  
RandBigInt
ToBigInt

A generic trait for converting a value to a BigInt.

ToBigUint

A generic trait for converting a value to a BigUint.

BigDigit

A BigDigit is a BigUint's composing element.