Home
last modified time | relevance | path

Searched refs:fold_with (Results 1 – 25 of 25) sorted by relevance

/external/rust/crates/rayon/src/iter/plumbing/
Dmod.rs106 fn fold_with<F>(self, folder: F) -> F in fold_with() method
245 fn fold_with<F>(self, folder: F) -> F in fold_with() method
438 producer.fold_with(consumer.into_folder()).complete() in bridge_producer_consumer()
479 (producer, None) => producer.fold_with(consumer.into_folder()).complete(), in bridge_unindexed_producer_consumer()
482 producer.fold_with(consumer.into_folder()).complete() in bridge_unindexed_producer_consumer()
/external/rust/crates/rayon/src/iter/
Dlen.rs131 fn fold_with<F>(self, folder: F) -> F in fold_with() function
135 self.base.fold_with(folder) in fold_with()
265 fn fold_with<F>(self, folder: F) -> F in fold_with() function
269 self.base.fold_with(folder) in fold_with()
Dchain.rs207 fn fold_with<F>(self, mut folder: F) -> F in fold_with() function
211 folder = self.a.fold_with(folder); in fold_with()
215 self.b.fold_with(folder) in fold_with()
Dcopied.rs127 fn fold_with<F>(self, folder: F) -> F in fold_with() function
131 self.base.fold_with(CopiedFolder { base: folder }).base in fold_with()
Dcloned.rs127 fn fold_with<F>(self, folder: F) -> F in fold_with() function
131 self.base.fold_with(ClonedFolder { base: folder }).base in fold_with()
Dinspect.rs150 fn fold_with<G>(self, folder: G) -> G in fold_with() function
158 self.base.fold_with(folder1).base in fold_with()
Dmap_with.rs169 fn fold_with<G>(self, folder: G) -> G in fold_with() function
178 self.base.fold_with(folder1).base in fold_with()
498 fn fold_with<G>(self, folder: G) -> G in fold_with() function
507 self.base.fold_with(folder1).base in fold_with()
Dmap.rs152 fn fold_with<G>(self, folder: G) -> G in fold_with() function
160 self.base.fold_with(folder1).base in fold_with()
Dpanic_fuse.rs166 fn fold_with<G>(self, folder: G) -> G in fold_with() function
174 self.base.fold_with(folder1).base in fold_with()
Dempty.rs98 fn fold_with<F>(self, folder: F) -> F in fold_with() method
Dupdate.rs151 fn fold_with<G>(self, folder: G) -> G in fold_with() function
159 self.base.fold_with(folder1).base in fold_with()
Dsplitter.rs168 fn fold_with<F>(self, folder: F) -> F in fold_with() function
Dpar_bridge.rs122 fn fold_with<F>(self, mut folder: F) -> F in fold_with() method
Dintersperse.rs194 fn fold_with<F>(self, folder: F) -> F in fold_with() function
203 self.base.fold_with(folder1).base in fold_with()
Drepeat.rs93 fn fold_with<F>(self, folder: F) -> F in fold_with() method
Dmod.rs1287 fn fold_with<F, T>(self, init: T, fold_op: F) -> FoldWith<Self, T, F> in fold_with() method
Dtest.rs1702 .fold_with(sender, |s, i| { in check_fold_with()
/external/rust/crates/rayon/src/
Dsplit_producer.rs43 pub(super) fn fold_with<F>(self, folder: F, skip_last: bool) -> F in fold_with() function
126 fn fold_with<F>(self, folder: F) -> F in fold_with() function
130 self.fold_with(folder, false) in fold_with()
Dstr.rs405 fn fold_with<F>(self, folder: F) -> F in fold_with() method
460 fn fold_with<F>(self, folder: F) -> F in fold_with() method
505 fn fold_with<F>(self, folder: F) -> F in fold_with() method
549 fn fold_with<F>(self, folder: F) -> F in fold_with() method
676 fn fold_with<F>(self, folder: F) -> F in fold_with() method
680 self.splitter.fold_with(folder, self.skip_last) in fold_with()
782 fn fold_with<F>(self, folder: F) -> F in fold_with() method
841 fn fold_with<F>(self, folder: F) -> F in fold_with() method
Drange.rs275 fn fold_with<F>(self, folder: F) -> F
/external/rust/crates/rayon/src/compile_fail/
Dmust_use.rs48 fold_with /** v.par_iter().fold_with(0, |x, _| x); */
/external/rust/crates/hashbrown/src/external_trait_impls/rayon/
Draw.rs70 fn fold_with<F>(self, folder: F) -> F in fold_with() method
174 fn fold_with<F>(mut self, mut folder: F) -> F in fold_with() method
/external/rust/crates/rayon/tests/
Dclones.rs139 check(v.par_iter().with_max_len(1).fold_with(0, |x, _| x)); in clone_adaptors()
Ddebug.rs157 check(v.par_iter().fold_with(0, |x, _| x)); in debug_adaptors()
/external/rust/crates/rayon/
DRELEASES.md36 work like `ParallelIterator::fold` and `fold_with` with fixed-size chunks of
569 - Added the `map_with` and `fold_with` combinators, which help for
665 - The internal `Producer` trait now features `fold_with`, which enables