SAAShl

Trait SAAShl 

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

see shl

Required Methods§

Source

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

apply the shl function to each element of this array.

Implementors§

Source§

impl<T: Shl<Output = T> + Copy, const N: usize> SAAShl<T, N> for T