pub trait HigherIntoIterator<T> {
    type Item;
    type IntoIter;

    fn hinto_iter(self, a: T) -> Self::IntoIter;
}
Expand description

Implemented by iterator generators.

A function, e.g. And is a iterator generator with respect to the output, e.g. [And] true. This iterates over inputs that makes And return true.

Required Associated Types§

The item type generated by the iterator.

The iterator type.

Required Methods§

Construct iterator from an argument.

Implementations on Foreign Types§

Implementors§