Struct comp_sci::data_structures::doubly_linked_list::Iter [-]  [+] [src]

pub struct Iter<'a, A: 'a> {
    // some fields omitted
}

An iterator over the references to the items of a DoublyLinkedList.

Trait Implementations

impl<'a, A> Iterator for Iter<'a, A>

type Item = &'a A

fn next(&mut self) -> Option<&'a A>

fn size_hint(&self) -> (usize, Option<usize>)