Home
last modified time | relevance | path

Searched refs:WhileSome (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/rayon/src/iter/
Dwhile_some.rs14 pub struct WhileSome<I: ParallelIterator> { struct
18 impl<I> WhileSome<I> impl
24 WhileSome { base } in new()
28 impl<I, T> ParallelIterator for WhileSome<I> implementation
Dmod.rs187 while_some::WhileSome,
1903 fn while_some<T>(self) -> WhileSome<Self> in while_some()
1908 WhileSome::new(self) in while_some()
/external/rust/crates/itertools/src/adaptors/
Dmod.rs646 pub struct WhileSome<I> { struct
651 pub fn while_some<I>(iter: I) -> WhileSome<I> { in while_some()
652 WhileSome { iter } in while_some()
655 impl<I, A> Iterator for WhileSome<I> implementation
/external/rust/crates/itertools/src/
Dlib.rs104 WhileSome,
1262 fn while_some<A>(self) -> WhileSome<Self> in while_some()