pub trait ArrayAdd<Rhs>: Sized { fn add(&self, rhs: &Rhs) -> Self; }
Defines basic addition operation for primitive arrays
Adds itself to rhs
rhs