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