pub trait SimdIterable<T: SimdElement> {
    fn simd_iter_with_width<const LANES: usize>(&self) -> SimdIter<'_, T, LANES> 
    where
        LaneCount<LANES>: SupportedLaneCount
; fn simd_iter(&self) -> SimdIter<'_, T, 32> { ... } }

Required Methods§

Provided Methods§

Implementors§