[][src]Function web_glitz::task::join5_right

pub fn join5_right<A, B, C, D, E, Ec>(
    a: A,
    b: B,
    c: C,
    d: D,
    e: E
) -> Join5Right<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 no particular order, with the output of task e.

Similar to join5, 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 join5_left.

Panics

Panics if the ContextIds a, b, c, d and e are not compatible.