[go: up one dir, main page]

fraction 0.13.0

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

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;