Home
last modified time | relevance | path

Searched refs:interleave_shortest (Results 1 – 11 of 11) sorted by relevance

/external/rust/crates/rayon/src/compile_fail/
Dmust_use.rs51 interleave_shortest /** v.par_iter().interleave_shortest(&v); */
/external/rust/crates/itertools/tests/
Dtest_std.rs38 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()
Dquick.rs636 correct_size_hint(a.interleave_shortest(b))
639 exact_size_for_this(a.iter().interleave_shortest(&b))
/external/rust/crates/itertools/
DCHANGELOG.md129 …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/
Dclones.rs130 check(v.par_iter().interleave_shortest(&v)); in clone_adaptors()
Ddebug.rs153 check(v.par_iter().interleave_shortest(&v)); in debug_adaptors()
/external/rust/crates/rayon/src/iter/
Dmod.rs126 mod interleave_shortest; module
170 interleave_shortest::InterleaveShortest,
2312 fn interleave_shortest<I>(self, other: I) -> InterleaveShortest<Self, I::Iter> in interleave_shortest() method
Dtest.rs2017 .interleave_shortest(&ys) in check_interleave_shortest()
2024 .interleave_shortest(&ys) in check_interleave_shortest()
/external/rust/crates/itertools/src/
Dlib.rs394 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/
Dmod.rs97 pub fn interleave_shortest<I, J>(a: I, b: J) -> InterleaveShortest<I, J> in interleave_shortest() function
/external/rust/crates/rayon/
DRELEASES.md330 - `IndexedParallelIterator` added `interleave`, `interleave_shortest`, and