dynamic_matrix/lib.rs
1#![warn(missing_debug_implementations, missing_docs)]
2
3//! A crate to work with dynamically sized matrices.
4
5/// Contains the errors associated with this crate
6pub mod errors;
7/// Contains the row major ordered DynamicMatrix
8mod row_major;
9
10// Re-exporting for ease-of-use
11pub use row_major::DynamicMatrix;