Merge branch 'main' into date_utils

This commit is contained in:
2025-05-11 02:00:34 +01:00
committed by GitHub
8 changed files with 732 additions and 81 deletions

View File

@@ -2,7 +2,7 @@
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`. Index as `Array(row, column)`.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Matrix<T> {
rows: usize,