Macro seq

Source
macro_rules! seq {
    (@$head:expr, $($tail:tt)*) => { ... };
    ($head:expr, $($tail:tt)*) => { ... };
    (@$task:expr) => { ... };
    ($head:expr) => { ... };
}
Expand description

Returns a TaskGraph that executes the argument list of TaskGraphs sequentially.