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