com_croftsoft_core/math/matrix/
mod.rs

1// =============================================================================
2//! - A mathematical matrix that uses const generics for the rows and columns
3//!
4//! # Metadata
5//! - Copyright: © 1998 - 2022 [`CroftSoft Inc`]
6//! - Author: [`David Wallace Croft`]
7//! - Rust version: 2022-10-05
8//! - Rust since: 2022-09-04
9//! - Java version: 1998-12-27
10//!
11//! # History
12//! - Adapted from the Java class com.croftsoft.core.math.Matrix
13//!   - In the Java-based [`CroftSoft Core Library`]
14//!
15//! [`CroftSoft Core Library`]: https://www.croftsoft.com/library/code/
16//! [`CroftSoft Inc`]: https://www.croftsoft.com/
17//! [`David Wallace Croft`]: https://www.croftsoft.com/people/david/
18// =============================================================================
19
20pub mod functions;
21pub mod methods;
22pub mod operations;
23pub mod structures;
24pub mod trait_imps;