1 2 3 4 5 6 7 8 9 10 11
#![allow(illegal_floating_point_literal_pattern)] pub mod mappings; pub mod math; pub mod operations; pub mod prelude { pub use crate::math::*; pub use crate::operations::Operation::*; pub use crate::operations::*; }