Searched refs:tree_fold1 (Results 1 – 8 of 8) sorted by relevance
/external/rust/crates/itertools/benches/ |
D | tree_fold1.rs | 88 tree_fold1, 106 tree_fold1, 124 tree_fold1,
|
/external/rust/crates/itertools/ |
D | Cargo.toml.orig | 65 name = "tree_fold1"
|
D | Cargo.toml | 51 name = "tree_fold1"
|
D | CHANGELOG.md | 91 …- Add new iterator method `.tree_fold1()` which is like `.fold1()` except items are combined in a …
|
/external/rust/crates/itertools/tests/ |
D | test_core.rs | 242 fn tree_fold1() { in tree_fold1() function 244 assert_eq!((0..i).tree_fold1(|x, y| x + y), (0..i).fold1(|x, y| x + y)); in tree_fold1()
|
D | test_std.rs | 1013 fn tree_fold1() { in tree_fold1() function 1036 let actual = num_strings.tree_fold1(|a, b| format!("{} {} x", a, b)); in tree_fold1()
|
D | quick.rs | 1179 let actual = a.iter().cloned().tree_fold1(f64::atan2);
|
/external/rust/crates/itertools/src/ |
D | lib.rs | 2059 fn tree_fold1<F>(mut self, mut f: F) -> Option<Self::Item> in tree_fold1() method
|