ruloom 0.1.2

A thin wrapper around 'corosensei' that provides support for stackful coroutines in Rust (like Loom in Java or goroutines in golang).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod await_future;
mod mpsc;
mod stream;
mod thread_local_waker;
mod thread_local_yielder;
mod to_future;

pub(crate) use {thread_local_waker::*, thread_local_yielder::*};

pub use {await_future::await_future, mpsc::*, stream::*, to_future::to_future};

#[cfg(test)]
mod tests;