Trait list_fn::IntoIter[][src]

pub trait IntoIter: ListFn<End = Self> {
    fn iter(self) -> ListIterator<Self>

Notable traits for ListIterator<S>

impl<S: ListFn<End = S>> Iterator for ListIterator<S> type Item = S::Item;
{ ... } }
Expand description

Note: we can’t use the standard std::iter::IntoIterator because it has a conflicting implementation.

Provided methods

fn iter(self) -> ListIterator<Self>

Notable traits for ListIterator<S>

impl<S: ListFn<End = S>> Iterator for ListIterator<S> type Item = S::Item;
[src]

Expand description

Converts a list to an iterator.

Loading content...

Implementors

impl<S: ListFn<End = Self>> IntoIter for S[src]

Loading content...