lender 0.6.2

A lending-iterator trait based on higher-rank trait bounds, with full std::iter::Iterator functionality
Documentation
mod empty;
mod from_fn;
mod from_iter;
mod from_iter_ref;
mod once;
mod once_with;
mod repeat;
mod repeat_with;
mod windows_mut;

pub use self::{
    empty::{Empty, empty},
    from_fn::{FromFn, from_fn},
    from_iter::{FromIntoIter, FromIter, LendIter, from_into_iter, from_iter, lend_iter},
    from_iter_ref::{FromIterRef, from_iter_ref},
    once::{Once, once},
    once_with::{OnceWith, once_with},
    repeat::{Repeat, repeat},
    repeat_with::{RepeatWith, repeat_with},
    windows_mut::{ArrayWindowsMut, WindowsMut, WindowsMutExt, array_windows_mut, windows_mut},
};