flat_matrix 0.1.2

a crate that adds flat matrices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Flat Matrix

this is a library that adds flat matrices


```rust
use FlatMatrix::FlatMatrix;

fn main() {
    let matrix: FlatMatrix<bool> = FlatMatrix::new(10, 20, false);
    println!("{}", matrix.get(4, 4).unwrap()); //false
    matrix.set(4, 4, true);
    println!("{}", matrix.get(4, 4).unwrap()); //true
}

```