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