[][src]Macro pipeline_macro::pipeline

macro_rules! pipeline {
    ($in:ty => $($fns:expr) => * ;-> $out:ty) => { ... };
}

Return new instance of pipeline struct

Syntax:

pipeline! {
     InputType => function1 => function2 ;-> OutputType
};