macro_rules! fork {
(@$head:expr, $($tail:tt)*) => { ... };
($head:expr, $($tail:tt)*) => { ... };
(@$task:expr) => { ... };
($head:expr) => { ... };
}
Expand description
Returns a TaskGraph
that executes the argument list of TaskGraphs
concurrently.