Searched refs:interleave_shortest (Results 1 – 11 of 11) sorted by relevance
/external/rust/crates/rayon/src/compile_fail/ |
D | must_use.rs | 51 interleave_shortest /** v.par_iter().interleave_shortest(&v); */
|
/external/rust/crates/itertools/tests/ |
D | test_std.rs | 38 fn interleave_shortest() { in interleave_shortest() function 41 let it = v0.into_iter().interleave_shortest(v1.into_iter()); in interleave_shortest() 47 let it = v0.into_iter().interleave_shortest(v1.into_iter()); in interleave_shortest() 53 let it = i0.interleave_shortest(v1.into_iter()); in interleave_shortest() 58 let it = v0.into_iter().interleave_shortest(i1); in interleave_shortest()
|
D | quick.rs | 636 correct_size_hint(a.interleave_shortest(b)) 639 exact_size_for_this(a.iter().interleave_shortest(&b))
|
/external/rust/crates/itertools/ |
D | CHANGELOG.md | 129 …d subsequent size hint bugfixes by @rkarp. Fixes bugs in product, `interleave_shortest` size hints. 216 …- Improve precision of the `interleave_shortest` adaptor's size hint (it is now computed exactly w… 268 - `.interleave_shortest()` is no longer guaranteed to act like fused 296 - Added adaptor `.interleave_shortest()`
|
/external/rust/crates/rayon/tests/ |
D | clones.rs | 130 check(v.par_iter().interleave_shortest(&v)); in clone_adaptors()
|
D | debug.rs | 153 check(v.par_iter().interleave_shortest(&v)); in debug_adaptors()
|
/external/rust/crates/rayon/src/iter/ |
D | mod.rs | 126 mod interleave_shortest; module 170 interleave_shortest::InterleaveShortest, 2312 fn interleave_shortest<I>(self, other: I) -> InterleaveShortest<Self, I::Iter> in interleave_shortest() method
|
D | test.rs | 2017 .interleave_shortest(&ys) in check_interleave_shortest() 2024 .interleave_shortest(&ys) in check_interleave_shortest()
|
/external/rust/crates/itertools/src/ |
D | lib.rs | 394 fn interleave_shortest<J>(self, other: J) -> InterleaveShortest<Self, J::IntoIter> in interleave_shortest() method 398 adaptors::interleave_shortest(self, other.into_iter()) in interleave_shortest()
|
/external/rust/crates/itertools/src/adaptors/ |
D | mod.rs | 97 pub fn interleave_shortest<I, J>(a: I, b: J) -> InterleaveShortest<I, J> in interleave_shortest() function
|
/external/rust/crates/rayon/ |
D | RELEASES.md | 330 - `IndexedParallelIterator` added `interleave`, `interleave_shortest`, and
|