1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Producers, iterables and iterators.
//!
//! This module collects all concrete producer, iterable and iterator
//! implementation structs.
//!
//!
//! See also [`NdProducer`](crate::NdProducer).

pub use crate::dimension::Axes;
pub use crate::indexes::{Indices, IndicesIter};
pub use crate::iterators::{
    AxisChunksIter, AxisChunksIterMut, AxisIter, AxisIterMut, ExactChunks, ExactChunksIter,
    ExactChunksIterMut, ExactChunksMut, IndexedIter, IndexedIterMut, Iter, IterMut, Lanes,
    LanesIter, LanesIterMut, LanesMut, Windows,
};