Crate u64_array_bigints_core
source · [−]Expand description
This crate only exists separate from u64_array_bigints because we want to
export the macros from u64_array_bigints_macros from the main crate
without a lot of code duplication or cyclic references. Most users should
just use the main u64_array_bigints crate in their Cargo.toml.
Structs
Note: LEN must satisfy LEN > 0 and LEN.checked_mul(64usize).is_some().
The construction functions and some downstream functions check for these
invariants. Users should preferrably use from_u64_array instead of direct
tuple struct construction of the Uint, because the invariants are checked
automatically by from_u64_array.