pub trait SAASub<T, const N: usize> { // Required method fn sub(self, rhs: [T; N]) -> [T; N]; }
see sub
sub
apply the sub function to each element of this array.