xref: /third_party/rust/crates/minimal-lexical/src/table.rs
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/rust/crates/minimal-lexical/src/
1cbd624adSopenharmony_ci//! Pre-computed tables for parsing float strings.
2cbd624adSopenharmony_ci
3cbd624adSopenharmony_ci#![doc(hidden)]
4cbd624adSopenharmony_ci
5cbd624adSopenharmony_ci// Re-export all the feature-specific files.
6cbd624adSopenharmony_ci#[cfg(feature = "compact")]
7cbd624adSopenharmony_cipub use crate::table_bellerophon::*;
8cbd624adSopenharmony_ci#[cfg(not(feature = "compact"))]
9cbd624adSopenharmony_cipub use crate::table_lemire::*;
10cbd624adSopenharmony_ci#[cfg(not(feature = "compact"))]
11cbd624adSopenharmony_cipub use crate::table_small::*;
12

Indexes created Thu Nov 07 10:32:03 CST 2024