We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f596c9e commit f71ec6bCopy full SHA for f71ec6b
src/parallel/mod.rs
@@ -32,6 +32,10 @@
32
//! “unindexed”. Use ndarray’s [Zip] for lock step parallel iteration of
33
//! multiple arrays or producers at a time.
34
//!
35
+//! For the unindexed parallel iterators, an inherent method [`with_min_len`](Parallel::with_min_len)
36
+//! is provided to limit the number of elements each parallel task processes in way that is
37
+//! similar to Rayon's [`IndexedParallelIterator::with_min_len`](rayon::prelude::IndexedParallelIterator::with_min_len).
38
+//!
39
//! # Examples
40
41
//! ## Arrays and array views
0 commit comments