imgref_iter/iter/
mod.rs

1//! Contains implementations for all the iterators offered by this crate.
2
3// Iter
4// IterMut
5// IterPtr
6// IterPtrMut
7// IterWindows
8// IterWindowsMut
9// IterWindowsPtr
10// IterWindowsPtrMut
11// SimdIter
12// SimdIterMut
13// SimdIterPtr
14// SimdIterPtrMut
15
16mod generic;
17mod windows;
18#[cfg(any(doc, feature = "simd"))]
19mod simd;
20#[cfg(any(doc, feature = "simd"))]
21mod simd_windows;
22
23pub use generic::*;
24pub use windows::*;
25#[cfg(any(doc, feature = "simd"))]
26pub use simd::*;
27#[cfg(any(doc, feature = "simd"))]
28pub use simd_windows::*;