File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010//! The following types implement parallel iterators, accessed using these
1111//! methods:
1212//!
13- //! - [`Array`], [`ArcArray`]: `.par_iter()` and `.par_iter_mut()`
14- //! - [`ArrayView`](ArrayView): `.into_par_iter()`
15- //! - [`ArrayViewMut`](ArrayViewMut): `.into_par_iter()`
16- //! - [`AxisIter`](iter::AxisIter) , [`AxisIterMut`](iter::AxisIterMut): `.into_par_iter()`
17- //! - [`AxisChunksIter`](iter::AxisChunksIter) , [`AxisChunksIterMut`](iter::AxisChunksIterMut): `.into_par_iter()`
13+ //! - [`Array`], [`ArcArray`] `.par_iter()` and `.par_iter_mut()`
14+ //! - [`ArrayView`] `.into_par_iter()`
15+ //! - [`ArrayViewMut`] `.into_par_iter()`
16+ //! - [`AxisIter`], [`AxisIterMut`] `.into_par_iter()`
17+ //! - [`AxisChunksIter`], [`AxisChunksIterMut`] `.into_par_iter()`
1818//! - [`Zip`] `.into_par_iter()`
1919//!
2020//! The following other parallelized methods exist:
121121//! }
122122//! ```
123123
124+ #[ allow( unused_imports) ] // used by rustdoc links
125+ use crate :: {
126+ ArrayBase ,
127+ Array ,
128+ ArcArray ,
129+ ArrayView ,
130+ ArrayViewMut ,
131+ Zip ,
132+ } ;
133+ #[ allow( unused_imports) ] // used by rustdoc links
134+ use crate :: iter:: {
135+ AxisIter ,
136+ AxisIterMut ,
137+ AxisChunksIter ,
138+ AxisChunksIterMut ,
139+ } ;
140+
124141/// Into- traits for creating parallelized iterators and/or using [`par_azip!`]
125142pub mod prelude {
126143 #[ doc( no_inline) ]
You can’t perform that action at this time.
0 commit comments