/external/rust/crates/rayon/src/iter/plumbing/ |
D | mod.rs | 106 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/ |
D | len.rs | 131 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()
|
D | chain.rs | 207 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()
|
D | copied.rs | 127 fn fold_with<F>(self, folder: F) -> F in fold_with() function 131 self.base.fold_with(CopiedFolder { base: folder }).base in fold_with()
|
D | cloned.rs | 127 fn fold_with<F>(self, folder: F) -> F in fold_with() function 131 self.base.fold_with(ClonedFolder { base: folder }).base in fold_with()
|
D | inspect.rs | 150 fn fold_with<G>(self, folder: G) -> G in fold_with() function 158 self.base.fold_with(folder1).base in fold_with()
|
D | map_with.rs | 169 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()
|
D | map.rs | 152 fn fold_with<G>(self, folder: G) -> G in fold_with() function 160 self.base.fold_with(folder1).base in fold_with()
|
D | panic_fuse.rs | 166 fn fold_with<G>(self, folder: G) -> G in fold_with() function 174 self.base.fold_with(folder1).base in fold_with()
|
D | empty.rs | 98 fn fold_with<F>(self, folder: F) -> F in fold_with() method
|
D | update.rs | 151 fn fold_with<G>(self, folder: G) -> G in fold_with() function 159 self.base.fold_with(folder1).base in fold_with()
|
D | splitter.rs | 168 fn fold_with<F>(self, folder: F) -> F in fold_with() function
|
D | par_bridge.rs | 122 fn fold_with<F>(self, mut folder: F) -> F in fold_with() method
|
D | intersperse.rs | 194 fn fold_with<F>(self, folder: F) -> F in fold_with() function 203 self.base.fold_with(folder1).base in fold_with()
|
D | repeat.rs | 93 fn fold_with<F>(self, folder: F) -> F in fold_with() method
|
D | mod.rs | 1287 fn fold_with<F, T>(self, init: T, fold_op: F) -> FoldWith<Self, T, F> in fold_with() method
|
D | test.rs | 1702 .fold_with(sender, |s, i| { in check_fold_with()
|
/external/rust/crates/rayon/src/ |
D | split_producer.rs | 43 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()
|
D | str.rs | 405 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
|
D | range.rs | 275 fn fold_with<F>(self, folder: F) -> F
|
/external/rust/crates/rayon/src/compile_fail/ |
D | must_use.rs | 48 fold_with /** v.par_iter().fold_with(0, |x, _| x); */
|
/external/rust/crates/hashbrown/src/external_trait_impls/rayon/ |
D | raw.rs | 70 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/ |
D | clones.rs | 139 check(v.par_iter().with_max_len(1).fold_with(0, |x, _| x)); in clone_adaptors()
|
D | debug.rs | 157 check(v.par_iter().fold_with(0, |x, _| x)); in debug_adaptors()
|
/external/rust/crates/rayon/ |
D | RELEASES.md | 36 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
|