Skip to main content

ParallelTryCollectDenseMle

Trait ParallelTryCollectDenseMle 

Source
pub trait ParallelTryCollectDenseMle: ParallelIterator {
    // Required method
    fn try_collect_dense_mle(
        self,
    ) -> Option<DenseMultilinearExtension<Self::Item>>;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> ParallelTryCollectDenseMle for T
where T: ParallelIterator,

Available on crate feature parallel only.