sans 0.1.0-alpha.4

Composable coroutine-based programming library for sans-io
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Combining coroutines together
//!
//! This module provides functions for chaining and transforming coroutines.

mod chain;
mod map;

// Re-export composition operations
pub use chain::{AndThen, Chain, and_then, chain, init_chain};
pub use map::{
    MapInput, MapReturn, MapYield, init_map_input, init_map_return, init_map_yield, map_input,
    map_return, map_yield,
};