glucose 0.1.3

multipurpose math and physics crate for my projects
Documentation
1
2
3
4
5
6
7
8
9
10
macro_rules! forward {
    ($(fn $method:ident(self $(, $arg:ident: $ty:ty)*) -> $rty:ty;)*) => {
        $(
            #[inline]
            fn $method(self $(, $arg: $ty )*) -> $rty {
                Self::$method(self $(, $arg)*)
            }
        )*
    }
}