fx-rs 0.1.1-dev0

Algebraic Effects inspired by Kyo and Fx.go
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod ability;
mod and;
mod arrow;
mod fold;
mod fx;
mod handler;
mod lens;
mod provide;
mod state;

pub use arrow::Arrow;
pub use handler::Handler;
pub use lens::Lens;
pub use state::State;

#[cfg(test)]
mod test;