hydroflow 0.10.0

Hydro's low-level dataflow runtime and IR
Documentation
1
2
3
4
5
6
7
8
9
use hydroflow::hydroflow_syntax;

fn main() {
    let mut df = hydroflow_syntax! {
        // Due to the TODO the `usize` is not caught, but that is ok.
        source_iter(0..10) -> identity::<'a, usize>() -> for_each(std::mem::drop);
    };
    df.run_available();
}