Structs
- A big signed integer type.
- A big unsigned integer type.
- The error type returned when a checked conversion regarding big integer fails.
- An iterator of
u32digits representation of aBigUintorBigInt, ordered least significant digit first. - An iterator of
u64digits representation of aBigUintorBigInt, ordered least significant digit first.
Enums
- A Sign is a
BigInt’s composing element.
Traits
- A generic trait for converting a value to a
BigInt. This may returnNonewhen converting fromf32orf64, and will always succeed when converting from any integer or unsigned primitive, orBigUint. - A generic trait for converting a value to a
BigUint.