pub trait ParFold: Fold + Parallel {
    fn fold_par<N>(
        &mut self,
        threshold: usize,
        nodes: Vec<N, Global>
    ) -> Vec<N, Global>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator

    where
        N: Send + Sync + FoldWith<Self>
; }
Available on crate feature __transforms only.

Required Methods

Implementors