const-frac 0.0.4

Types for supporting floating point constants.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "tokenize")]
pub mod frac;

#[cfg(not(feature = "tokenize"))]
mod frac;

mod real;
pub mod error;

pub use frac::Frac;
pub use real::Real;