reffect icon indicating copy to clipboard operation
reffect copied to clipboard

Yet another Rust algebraic effect library using generators

Results 2 reffect issues
Sort by recently updated
recently updated
newest added

`#[effectful]` 坏掉了 不知道怎么想的, 最新的 nightly rustc 要求写成 ```rust #[coroutine] move || { ... } ```

effect group 用法感觉比较怪异 别的语言比较流行这种风格: ```rust let provider = CounterImpl() #[with(provider)] // 或者叫 ctl, control { callCounter() } fn callCounter() { let (get, inc) = useCounter(); inc() println("{}", get()) } ```