clippy: rm unnecessary borrows structure: move struct definitions around tests: add unit test for matrix operations errors: add custom error types
5 lines
112 B
Rust
5 lines
112 B
Rust
//! Type definition crate for the program
|
|
//! Contains a Matrix definition
|
|
|
|
pub mod matrix;
|
|
pub mod matrix_err;
|