anotherpipemacro

This crate provides a pipe macro to easily compose functions together with a new syntax preventing nested calls which are hard to read and understand.

example usage: ```rust use anotherpipemacro::pipe;

let res = pipe!( "32" => str::parse:: => Result::unwrap);

assert_eq!(res, 32); ```

Should you use this crate?

No.

It is meant as an exercice in writing macros and publishing to crates.io, and possibly lacks features. If you want a more mature crate, use the pipeline crate.