Structs§
- BigInt
- A big signed integer type.
- BigUint
- A big unsigned integer type.
- Parse
BigInt Error - Random
Bits - A random distribution for
BigUint
andBigInt
values of a particular bit size. - TryFrom
BigInt Error - The error type returned when a checked conversion regarding big integer fails.
- U32Digits
- An iterator of
u32
digits representation of aBigUint
orBigInt
, ordered least significant digit first. - U64Digits
- An iterator of
u64
digits representation of aBigUint
orBigInt
, ordered least significant digit first. - Uniform
BigInt - The back-end implementing rand’s
UniformSampler
forBigInt
. - Uniform
BigUint - The back-end implementing rand’s
UniformSampler
forBigUint
.
Enums§
Traits§
- Rand
BigInt - A trait for sampling random big integers.
- ToBig
Int - A generic trait for converting a value to a
BigInt
. This may returnNone
when converting fromf32
orf64
, and will always succeed when converting from any integer or unsigned primitive, orBigUint
. - ToBig
Uint - A generic trait for converting a value to a
BigUint
.