1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#[cfg(test)]
mod tests;

#[macro_use]
mod utils;

mod number;
mod traits;

/// A typedef for a `YololNumber` backed by the defacto standard: an i128.
pub type YololNumber = number::YololNumber<i128>;

pub use number::conversions::from_str::error::FromStrError;

/// Import this to get the standard `YololNumber` typedef and all the traits
/// you need to perform all the operations that you could want.
pub mod prelude
{
    pub use crate::traits::YololOps;
    pub use crate::YololNumber;

    pub use crate::FromStrError;

    pub use num_traits::{
        One,
        Zero,

        NumCast,
        AsPrimitive,

        Signed,
        Bounded,

        CheckedAdd,
        CheckedSub,
        CheckedMul,
        CheckedDiv,
        CheckedRem,
    };
}