coro 0.1.1

Stackful, first-class asymmetric coroutines.
Documentation
1
2
3
4
5
6
//! Platform-specific functionality for the current operating system.
#[cfg_attr(target_family = "unix", path = "unix.rs")]
#[cfg_attr(target_family = "windows", path = "windows.rs")]
mod imp;

pub use self::imp::*;