matrix-rs/src/types.rs
Zhongheng Liu fcf4d05b8a
feat: various fixes
clippy: rm unnecessary borrows
structure: move struct definitions around
tests: add unit test for matrix operations
errors: add custom error types
2025-01-22 20:29:02 +02:00

5 lines
112 B
Rust

//! Type definition crate for the program
//! Contains a Matrix definition
pub mod matrix;
pub mod matrix_err;