Struct std::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>
impl<A, B, T: Iterator<A>, U: Iterator<B>> Iterator<(A, B)> for Zip<T, U>
fn next(&mut self) -> Option<(A, B)>
fn size_hint(&self) -> (uint, Option<uint>)
fn size_hint(&self) -> (uint, Option<uint>)
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, &Zip<T, U>)
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
).