Struct core::iter::ZipStable
[-]
[+]
[src]
pub struct Zip<T, U> { // some fields omitted }
An iterator that iterates two other iterators simultaneously
pub struct Zip<T, U> { // some fields omitted }
An iterator that iterates two other iterators simultaneously
impl<A, B, T, U> ExactSizeIterator<(A, B)> for Zip<T, U> where T: ExactSizeIterator<A>, U: ExactSizeIterator<B>
fn rposition<P>(&mut self, predicate: P) -> Option<uint> where P: FnMut(A) -> bool
fn len(&self) -> uint
impl<A, B, T: Iterator<A>, U: Iterator<B>> Iterator<(A, B)> for Zip<T, U>
impl<A, B, T: ExactSizeIterator<A>, U: ExactSizeIterator<B>> DoubleEndedIterator<(A, B)> for Zip<T, U>
impl<A, B, T: RandomAccessIterator<A>, U: RandomAccessIterator<B>> RandomAccessIterator<(A, B)> for Zip<T, U>
impl<T: Clone, U: Clone> Clone for Zip<T, U>
fn clone(&self) -> Zip<T, U>
fn clone_from(&mut self, source: &Self)
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).