[−][src]Function web_glitz::task::sequence5_left
pub fn sequence5_left<A, B, C, D, E, Ec>(
a: A,
b: B,
c: C,
d: D,
e: E
) -> Sequence5Left<A, B, C, D, E, Ec> where
A: GpuTask<Ec>,
B: GpuTask<Ec>,
C: GpuTask<Ec>,
D: GpuTask<Ec>,
E: GpuTask<Ec>,
Combines task a, b, c, d and e, waiting for all tasks to complete in order, with the
output of task a.
Similar to sequence5, except that instead of returning a tuple of the outputs of a, b,
c, d and e, it only returns the output of a.
See also sequence5_right.
Panics
Panics if the ContextIds a, b, c, d and e are not compatible.