1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#[doc(no_inline)]
pub use {
    crate::{
        apply, gat, Gat,
        higher_kinded_types::{
            Apply,
            CanonicalHKT,
            Feed,
            HKT,
            HKTItem,
            HKTRef,
            HKTRefMut,
        },
        lending_iterator::{
            constructors::{
                into_lending_iter as _,
                windows_mut as _,
            },
            Item,
            LendingIteratorDyn,
        },
        windows_mut,
    },
};

#[nou::gat(Item)]
pub use crate::lending_iterator::LendingIterator;