[][src]Struct ddo::core::utils::Matrix

pub struct Matrix<T> {
    pub n: usize,
    pub m: usize,
    pub data: Vec<T>,
}

This structure implements a 2D matrix of size [ n X m ].

Example


let mut adjacency = Matrix::new_default(5, 5, None);

adjacency[(2, 2)] = Some(-5);
assert_eq!(Some(-5), adjacency[(2, 2)]);

Fields

n: usize

The number of rows

m: usize

The number of columns

data: Vec<T>

The items of the matrix

Methods

impl<T: Default + Clone> Matrix<T>[src]

pub fn new(m: usize, n: usize) -> Self[src]

Allows the creation of a matrix initialized with the default element

impl<T: Clone> Matrix<T>[src]

pub fn new_default(m: usize, n: usize, item: T) -> Self[src]

Allows the creation of a matrix initialized with the default element

Trait Implementations

impl<T: Clone> Clone for Matrix<T>[src]

impl<T> Index<(usize, usize)> for Matrix<T>[src]

A matrix is typically an item you'll want to adress using 2D position

type Output = T

The returned type after indexing.

fn index(&self, idx: (usize, usize)) -> &Self::Output[src]

It returns a reference to some item from the matrix at the given 2D index

impl<T> IndexMut<(usize, usize)> for Matrix<T>[src]

fn index_mut(&mut self, idx: (usize, usize)) -> &mut Self::Output[src]

It returns a mutable reference to some item from the matrix at the given 2D index

Auto Trait Implementations

impl<T> RefUnwindSafe for Matrix<T> where
    T: RefUnwindSafe

impl<T> Send for Matrix<T> where
    T: Send

impl<T> Sync for Matrix<T> where
    T: Sync

impl<T> Unpin for Matrix<T> where
    T: Unpin

impl<T> UnwindSafe for Matrix<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.