Trait matrix::Element

source ·
pub trait Element: Copy + PartialEq {
    fn zero() -> Self;

    fn is_zero(&self) -> bool { ... }
}
Expand description

An element.

Required Methods§

Return the zero element.

Provided Methods§

Check if the element is zero.

Implementations on Foreign Types§

Implementors§