Sha256: 7af0e21ed8479eec65831d1409f61a88d45a31764f2385ec759eda1a46d388b2

Contents?: true

Size: 1.38 KB

Versions: 38

Compression:

Stored size: 1.38 KB

Contents

use super::noop::*;
use super::plumbing::*;
use super::ParallelIterator;

pub(super) fn for_each<I, F, T>(pi: I, op: &F)
where
    I: ParallelIterator<Item = T>,
    F: Fn(T) + Sync,
    T: Send,
{
    let consumer = ForEachConsumer { op };
    pi.drive_unindexed(consumer)
}

struct ForEachConsumer<'f, F> {
    op: &'f F,
}

impl<'f, F, T> Consumer<T> for ForEachConsumer<'f, F>
where
    F: Fn(T) + Sync,
{
    type Folder = ForEachConsumer<'f, F>;
    type Reducer = NoopReducer;
    type Result = ();

    fn split_at(self, _index: usize) -> (Self, Self, NoopReducer) {
        (self.split_off_left(), self, NoopReducer)
    }

    fn into_folder(self) -> Self {
        self
    }

    fn full(&self) -> bool {
        false
    }
}

impl<'f, F, T> Folder<T> for ForEachConsumer<'f, F>
where
    F: Fn(T) + Sync,
{
    type Result = ();

    fn consume(self, item: T) -> Self {
        (self.op)(item);
        self
    }

    fn consume_iter<I>(self, iter: I) -> Self
    where
        I: IntoIterator<Item = T>,
    {
        iter.into_iter().for_each(self.op);
        self
    }

    fn complete(self) {}

    fn full(&self) -> bool {
        false
    }
}

impl<'f, F, T> UnindexedConsumer<T> for ForEachConsumer<'f, F>
where
    F: Fn(T) + Sync,
{
    fn split_off_left(&self) -> Self {
        ForEachConsumer { op: self.op }
    }

    fn to_reducer(&self) -> NoopReducer {
        NoopReducer
    }
}

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/iter/for_each.rs
wasmtime-28.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/iter/for_each.rs
wasmtime-27.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/iter/for_each.rs
wasmtime-26.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/iter/for_each.rs
wasmtime-25.0.2 ./ext/cargo-vendor/rayon-1.10.0/src/iter/for_each.rs
wasmtime-25.0.1 ./ext/cargo-vendor/rayon-1.10.0/src/iter/for_each.rs
wasmtime-25.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/iter/for_each.rs
wasmtime-24.0.0 ./ext/cargo-vendor/rayon-1.10.0/src/iter/for_each.rs
wasmtime-23.0.2 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-22.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-21.0.1 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-20.0.2 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-20.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-18.0.3 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-17.0.1 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-17.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-16.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-15.0.1 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-15.0.0 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs
wasmtime-14.0.4 ./ext/cargo-vendor/rayon-1.8.0/src/iter/for_each.rs