/*
Appellation: math <module>
Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Mathematics
//!
//! This module contains the core mathematical operations and structures used
//! throughout the library. It is divided into submodules for each mathematical
//! operation or structure.
pub use self::props::*;
pub(crate) mod props;
pub mod linalg;
#[cfg(test)]
mod tests {}