pub trait ArrayAdd<Rhs>: Sized {
    // Required method
    fn add(&self, rhs: &Rhs) -> Self;
}
Available on crate feature compute_arithmetics only.
Expand description

Defines basic addition operation for primitive arrays

Required Methods§

source

fn add(&self, rhs: &Rhs) -> Self

Adds itself to rhs

Implementors§