blob: af2c8a6a9747225ca20ad496674877721aabe401 (
plain)
1
2
3
4
5
6
7
8
9
|
// Adapted from https://github.com/Alexhuszagh/rust-lexical.
//! Precalculated large powers for limbs.
#[cfg(fast_arithmetic = "32")]
pub(crate) use super::large_powers32::*;
#[cfg(fast_arithmetic = "64")]
pub(crate) use super::large_powers64::*;
|