//! This module provides implementations for fundamental mathematical operations
//! such as addition, multiplication, and division, tailored for vector and matrix types.
modprivate{// Keeping this commented out as it might be needed in the future
// use crate::*;
}modadd;modmul;moddiv;crate::mod_interface!{
orphan use{add::add,mul::mul,mul::mul_mat_vec,div::div_scalar
};}