1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! The crate prelude: reexport the most essential utilities so that blob
//! `use`-ing them should enable the most straight-forward usage.

pub use crate::{
    generator,
    gen_iter,
    Generator,
    GeneratorState,
    mk_gen,
    stack_pinned,
};
pub use ::core::pin::Pin;