[−][src]Function web_glitz::task::sequence5_right
pub fn sequence5_right<A, B, C, D, E, Ec>(
a: A,
b: B,
c: C,
d: D,
e: E
) -> Sequence5Right<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 e.
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 e.
See also sequence5_left.
Panics
Panics if the ContextIds a, b, c, d and e are not compatible.