cgp-handler 0.8.0-alpha

A language extension for Rust, with pluggable trait implementations at compile-time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod async_computer;
mod computer;
mod handler;
mod produce;
mod try_compute;

pub use async_computer::*;
pub use computer::*;
pub use handler::*;
pub use produce::*;
pub use try_compute::*;