konst/
primitive.rs

1//! `const fn` equivalents of primitive type methods.
2
3/// `const fn`s for comparing primitive types for equality and ordering.
4#[cfg(feature = "cmp")]
5#[cfg_attr(feature = "docsrs", doc(cfg(feature = "cmp")))]
6pub mod cmp;
7
8#[cfg(feature = "parsing_no_proc")]
9mod parse;
10
11#[cfg(feature = "parsing_no_proc")]
12pub use parse::*;