update imports and module docstring

This commit is contained in:
Palash Tyagi 2025-05-01 23:14:37 +01:00
parent a0a551c7d9
commit ba1e2b3d43

View File

@ -1,4 +1,6 @@
use std::ops::{Index, IndexMut, Not}; //! A simple column-major Matrix implementation with element-wise operations.
use std::ops::{Add, BitAnd, BitOr, BitXor, Div, Index, IndexMut, Mul, Not, Sub};
/// A columnmajor 2D matrix of `T` /// A columnmajor 2D matrix of `T`
#[derive(Debug, Clone, PartialEq, Eq)] #[derive(Debug, Clone, PartialEq, Eq)]