A Rust crate inspired by elixir's pipe function declarations. This gets rid of the boilerplate of writing a new trait if you want to create a dot method on some type
```rust
use piperize::piperize;
fn add_tuple_vals(a: (i32, i32)) -> i32 {
a.0 + a.1
}
fn main() {
assert_eq!(42, (67, -25).add_tuple_vals());
}
```