pub trait HigherIntoIterator<T> {
type Item;
type IntoIter;
// Required method
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§
Required Methods§
Sourcefn hinto_iter(self, a: T) -> Self::IntoIter
fn hinto_iter(self, a: T) -> Self::IntoIter
Construct iterator from an argument.