1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Fast lexical string-to-float conversion routines.

// Hide implementation details.
mod algorithm;
mod api;

// Re-exports
pub use self::api::*;

// Exposed for benchmarking only.
#[doc(hidden)]
#[cfg(feature = "correct")]
pub use self::algorithm::bigcomp::{fast_atof as bigcomp_fast_atof, slow_atof as bigcomp_slow_atof};

// Exposed for benchmarking only
#[doc(hidden)]
#[cfg(feature = "algorithm_m")]
pub use self::algorithm::algorithm_m::{atof as algom_atof};