3 releases
0.1.2 | Sep 12, 2022 |
---|---|
0.1.1 | Sep 12, 2022 |
0.1.0 | Sep 12, 2022 |
#2639 in Rust patterns
4KB
another_pipe_macro
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:
use another_pipe_macro::pipe;
let res = pipe!( "32" => str::parse::<i32> => 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.
lib.rs
:
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:
use another_pipe_macro::pipe;
let res = pipe!( "32" => str::parse::<i32> => 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.