rust_advent_matrix/lib.rs
1// Copyright 2025 Jeffrey B. Stewart <jeff@stewart.net>. All Rights Reserved.
2
3//! The matrix crate provides a generic multidimensional tensor, and
4//! the matrix concrete implementation of that type, along with various
5//! quality-of-life methods and accessors for the matrix type. It was
6//! initially developed for use implementing solutions for the annual
7//! advent-of-code challenges, and was heavily inspired and adapted from
8//! https://github.com/Daedelus1/RustTensors
9mod iter;
10mod matrix_address;
11mod dense_matrix;
12mod traits;
13mod error;
14mod row;
15mod column;
16mod format;
17mod factories;
18mod transpose;
19
20pub use column::*;
21pub use dense_matrix::*;
22pub use error::*;
23pub use factories::*;
24pub use format::*;
25pub use iter::*;
26pub use matrix_address::*;
27pub use row::*;
28pub use traits::*;