From ba1e2b3d4392db4267031aeeef4b486e835f789e Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Thu, 1 May 2025 23:14:37 +0100 Subject: [PATCH] update imports and module docstring --- src/matrix/mat.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/matrix/mat.rs b/src/matrix/mat.rs index 194bb4e..a951c05 100644 --- a/src/matrix/mat.rs +++ b/src/matrix/mat.rs @@ -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 column‑major 2D matrix of `T` #[derive(Debug, Clone, PartialEq, Eq)]