ndarray/iterators/iter.rs
1//! Producers, iterables and iterators.
2//!
3//! This module collects all concrete producer, iterable and iterator
4//! implementation structs.
5//!
6//!
7//! See also [`NdProducer`](crate::NdProducer).
8
9pub use crate::dimension::Axes;
10pub use crate::indexes::{Indices, IndicesIter};
11pub use crate::iterators::{
12 AxisChunksIter,
13 AxisChunksIterMut,
14 AxisIter,
15 AxisIterMut,
16 AxisWindows,
17 ExactChunks,
18 ExactChunksIter,
19 ExactChunksIterMut,
20 ExactChunksMut,
21 IndexedIter,
22 IndexedIterMut,
23 IntoIter,
24 Iter,
25 IterMut,
26 Lanes,
27 LanesIter,
28 LanesIterMut,
29 LanesMut,
30 Windows,
31};