Lines Matching full:copied
6 /// `Copied` is an iterator that copies the elements of an underlying iterator.
8 /// This struct is created by the [`copied()`] method on [`ParallelIterator`]
10 /// [`copied()`]: trait.ParallelIterator.html#method.copied
14 pub struct Copied<I: ParallelIterator> { struct
18 impl<I> Copied<I> impl
22 /// Creates a new `Copied` iterator.
24 Copied { base } in new()
28 impl<'a, T, I> ParallelIterator for Copied<I> implementation
48 impl<'a, T, I> IndexedParallelIterator for Copied<I> implementation
105 type IntoIter = iter::Copied<P::IntoIter>;
108 self.base.into_iter().copied() in into_iter()
212 self.base = self.base.consume_iter(iter.into_iter().copied()); in consume_iter()