strmath 0.8.1

Do math with your strings.
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_export]
#[doc(hidden)]
macro_rules! declare_modules {
    ($($id:ident),+) => {
        $(
        #[doc(hidden)]
        pub mod $id;
        )+
    }
}