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 0b8daa9 commit b6c8a2bCopy full SHA for b6c8a2b
src/lib.rs
@@ -40,7 +40,7 @@ mod rayoff;
40
mod rayoff {
41
pub(crate) fn num_cpus() -> usize { std::thread::available_parallelism().map(|n| n.get()).unwrap_or(1) }
42
pub(crate) use rayon::prelude::{ParallelBridge, ParallelIterator, ParallelSliceMut};
43
- pub(crate) use rayon::scope;
+ pub(crate) use rayon::in_place_scope as scope;
44
pub(crate) use thread_local::ThreadLocal;
45
}
46
0 commit comments