serde_json/lexical/
large_powers.rs

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