next-gen 0.0.6

Safe generators on stable Rust.
Documentation
pub(in crate)
use ::core::{
    cell::Cell,
    future::Future,
    pin::Pin,
    task::{
        Context,
        Poll,
    },
};

pub(in crate)
use crate::{
    utils::CellOption,
    generator::{
        Generator,
        GeneratorFn,
        GeneratorState,
    },
};