minlin 0.4.0

Rust library with minimal linear algebra made to be as convinient as possible.
Documentation
1
2
3
4
5
6
7
8
9
pub trait Float {}

macro_rules! impl_float {
    ($($t:ident),*) => {
        $(impl Float for $t {})*
    };
}

impl_float!(f32, f64);