pub fn add<T>(src1: &[T], src2: &[T], dst: &mut [T])Expand description
Adds all values in src1 and src2 element-wise and stores the results in dst.
All slices must have the same length.
ยงPanics
This method panics if the slices have different lengths.