Struct std::iter::ChainStable
[-]
[+]
[src]
pub struct Chain<T, U> {
// some fields omitted
}An iterator that strings two iterators together
pub struct Chain<T, U> {
// some fields omitted
}An iterator that strings two iterators together
impl<A, T: Iterator<A>, U: Iterator<A>> Iterator<A> for Chain<T, U>fn next(&mut self) -> Option<A>fn size_hint(&self) -> (uint, Option<uint>)fn size_hint(&self) -> (uint, Option<uint>)impl<A, T: DoubleEndedIterator<A>, U: DoubleEndedIterator<A>> DoubleEndedIterator<A> for Chain<T, U>impl<A, T: RandomAccessIterator<A>, U: RandomAccessIterator<A>> RandomAccessIterator<A> for Chain<T, U>impl<T: Clone, U: Clone> Clone for Chain<T, U>fn clone(&self) -> Chain<T, U>fn clone_from(&mut self, &Chain<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).