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