pub trait IteratorExt<I: Iterator> {
// Required method
fn into_lender(self) -> FromIter<I>;
}Expand description
Extension trait adding to Iterator the method
into_lender, which turns an Iterator
into a Lender without allocation.
pub trait IteratorExt<I: Iterator> {
// Required method
fn into_lender(self) -> FromIter<I>;
}Extension trait adding to Iterator the method
into_lender, which turns an Iterator
into a Lender without allocation.