[][src]Function web_glitz::task::join_right

pub fn join_right<A, B, Ec>(a: A, b: B) -> JoinRight<A, B, Ec> where
    A: GpuTask<Ec>,
    B: GpuTask<Ec>, 

Combines task a with another task b, waiting for both tasks to complete in no particular order, with the output of task a.

Similar to join, except that instead of returning a tuple of the outputs of a and b, it only returns the output of b.

See also join_left.

Panics

Panics if the ContextIds of a and b are not compatible.