imgref-iter 0.4.0

A small crate for iterating over the rows or columns of `imgref` buffers
Documentation
//! Contains implementations for all the iterators offered by this crate.

// Iter
// IterMut
// IterPtr
// IterPtrMut
// IterWindows
// IterWindowsMut
// IterWindowsPtr
// IterWindowsPtrMut
// SimdIter
// SimdIterMut
// SimdIterPtr
// SimdIterPtrMut

mod generic;
mod windows;
#[cfg(any(doc, feature = "simd"))]
mod simd;
#[cfg(any(doc, feature = "simd"))]
mod simd_windows;

pub use generic::*;
pub use windows::*;
#[cfg(any(doc, feature = "simd"))]
pub use simd::*;
#[cfg(any(doc, feature = "simd"))]
pub use simd_windows::*;