next-gen 0.0.6

Safe generators on stable Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
//! 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,
    GeneratorState,
    mk_gen,
    stack_pinned,
};