Trait specs::ParJoin

source ·
pub unsafe trait ParJoin: Join {
    fn par_join(self) -> JoinParIter<Self>
    where
        Self: Sized
, { ... } }
Expand description

The purpose of the ParJoin trait is to provide a way to access multiple storages in parallel at the same time with the merged bit set.

Provided Methods

Create a joined parallel iterator over the contents.

Implementations on Foreign Types

Implementors