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