Trait blake3::join::Join [−][src]
The trait that abstracts over single-threaded and multi-threaded recursion.
See the join
module docs for more details.
Required methods
fn join<A, B, RA, RB>(
oper_a: A,
oper_b: B,
len_a: usize,
len_b: usize
) -> (RA, RB) where
A: FnOnce() -> RA + Send,
B: FnOnce() -> RB + Send,
RA: Send,
RB: Send,
[src]
oper_a: A,
oper_b: B,
len_a: usize,
len_b: usize
) -> (RA, RB) where
A: FnOnce() -> RA + Send,
B: FnOnce() -> RB + Send,
RA: Send,
RB: Send,