rusty-matrix 0.1.2

A generic matrix implementation
1
2
3
4
5
pub mod heap_matrix;
pub mod stack_matrix;

pub use heap_matrix::*;
pub use stack_matrix::*;