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