mirror of
https://github.com/serde-rs/json.git
synced 2025-09-28 05:21:09 +00:00
10 lines
250 B
Rust
10 lines
250 B
Rust
// 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::*;
|