1
2
3
4
5
6
7
8
9
10
11
12
//! `const fn` equivalents of primitive type methods.

/// `const fn`s for comparing primitive types for equality and ordering.
#[cfg(feature = "cmp")]
#[cfg_attr(feature = "docsrs", doc(cfg(feature = "cmp")))]
pub mod cmp;

#[cfg(feature = "parsing")]
mod parse;

#[cfg(feature = "parsing")]
pub use parse::*;