ndarray 0.17.2

An n-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting.
Documentation
//! 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,
    AxisWindows,
    ExactChunks,
    ExactChunksIter,
    ExactChunksIterMut,
    ExactChunksMut,
    IndexedIter,
    IndexedIterMut,
    IntoIter,
    Iter,
    IterMut,
    Lanes,
    LanesIter,
    LanesIterMut,
    LanesMut,
    Windows,
};