Struct core::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>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, 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).