pipe-op 0.0.1

The elixir pipe operator as a macro in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn ui() {
    let t = trybuild::TestCases::new();
    t.pass("tests/basic.rs");
    t.pass("tests/multiple.rs");
    t.pass("tests/many.rs");
    t.pass("tests/closure.rs");
    t.pass("tests/chaining.rs");
    t.pass("tests/method.rs");
    t.pass("tests/try.rs");
}