Trait matrix::Element [] [src]

pub trait Element: Copy + PartialEq {
    fn is_zero(&self) -> bool;
    fn zero() -> Self;
}
[]

An element.

Required Methods

[]

Check if the element is zero.

[]

Return the zero element.

Implementors