lending_iterator/
prelude.rs

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