[go: up one dir, main page]

fraction 0.14.0

Lossless fractions and decimals; drop-in float replacement
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use self::generic_fraction::GenericFraction;
pub use self::sign::Sign;

#[cfg(feature = "with-approx")]
pub mod approx;

pub mod display;

#[cfg(feature = "with-juniper-support")]
pub mod juniper_support;

#[cfg(feature = "with-postgres-support")]
pub mod postgres_support;

mod generic_fraction;
mod ops;
mod sign;