1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! # StrMath `0.8.0` //! //! Performs mathematical operations with your strings! mod macros; mod utils; #[doc(hidden)] pub mod ops; pub mod strmath; mod prelude { pub use crate::{ops::*, strmath::StrMath}; } pub use prelude::*;