const_decimal/lib.rs
1/// Some balanced [`Decimal`] variants.
2mod aliases;
3/// Stuff that should be done generically if I had more time.
4mod cheats;
5/// Casts between cost-decimals.
6mod conversion;
7/// Core decimal type & operations.
8mod decimal;
9/// [`Display`] and [`FromStr`] implementation.
10mod display;
11/// Implementations of foreign traits.
12mod foreign_traits;
13/// Full multiplication implementations for underlying integers.
14mod full_mul_div;
15/// Trait definition for underlying integer.
16mod integer;
17/// Macros used in tests.
18#[cfg(test)]
19#[macro_use]
20pub(crate) mod macros;
21/// Underlying algorithms used by other operations.
22#[cfg(test)]
23pub(crate) mod algorithms;
24
25pub use aliases::*;
26pub use decimal::*;
27pub use integer::*;