File tree Expand file tree Collapse file tree 1 file changed +22
-5
lines changed Expand file tree Collapse file tree 1 file changed +22
-5
lines changed Original file line number Diff line number Diff line change 10
10
//! The following types implement parallel iterators, accessed using these
11
11
//! methods:
12
12
//!
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()`
18
18
//! - [`Zip`] `.into_par_iter()`
19
19
//!
20
20
//! The following other parallelized methods exist:
121
121
//! }
122
122
//! ```
123
123
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
+
124
141
/// Into- traits for creating parallelized iterators and/or using [`par_azip!`]
125
142
pub mod prelude {
126
143
#[ doc( no_inline) ]
You can’t perform that action at this time.
0 commit comments