1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
// Required for doing saturating_neg and saturating_abs for YololNumber's
// #![feature(saturating_neg)]

// So we don't have _horrible_ trait bounds
#![feature(trait_alias)]

#[cfg(test)]
mod tests;

#[macro_use]
mod utils;

mod number;
mod yolol_ops;
mod consts;

pub use yolol_ops::YololOps;
pub type YololNumber = number::YololNumber<i128>;