Function zng_task::join_context
source ยท pub fn join_context<A, B, RA, RB>(op_a: A, op_b: B) -> (RA, RB)
Expand description
Rayon join context with local context.
This function captures the LocalContext
of the calling thread and propagates it to the threads that run the
operations.
See rayon::join_context
for more details about join.