SAAAnd

Trait SAAAnd 

Source
pub trait SAAAnd<T, const N: usize> {
    // Required method
    fn bitand(self, rhs: [T; N]) -> [T; N];
}
Expand description

see bitand

Required Methods§

Source

fn bitand(self, rhs: [T; N]) -> [T; N]

apply the bitand function to each element of this array.

Implementors§

Source§

impl<T: BitAnd<Output = T> + Copy, const N: usize> SAAAnd<T, N> for T