hydroflow 0.10.0

Hydro's low-level dataflow runtime and IR
Documentation
1
2
3
4
5
6
7
8
9
pub fn main() {
    let mut df = hydroflow::hydroflow_syntax! {
        source_iter(10..=30)
            -> persist::<'static>()
            -> filter(|value| value <= #unknown.as_reveal_ref())
        -> null();
    };
    df.run_available();
}