13 lines
143 B
Rust
13 lines
143 B
Rust
use super::Matrix;
|
|
use std::ops::Add;
|
|
|
|
impl Add for Matrix {
|
|
type Output = Matrix;
|
|
|
|
fn add(self, other: Matrix) -> Matrix {
|
|
|
|
|
|
}
|
|
|
|
}
|