Macro pipe

Source
macro_rules! pipe {
    ($value:expr => $func:expr) => { ... };
    ($value:expr => $func:expr => $($rest:tt)*) => { ... };
}
Expand description

Pipe operator for fluent chaining of operations