[][src]Trait amadeus::par_pipe::ParallelPipe

#[must_use]pub trait ParallelPipe<Input> where
    <Self::Task as PipeTask<Input>>::Output == Self::Output
{ type Output; type Task: PipeTask<Input> + Send; fn task(&self) -> Self::Task; fn inspect<F>(self, f: F) -> Inspect<Self, F>
    where
        F: FnMut(&Self::Output) + Clone + Send + 'static
, { ... }
fn update<F>(self, f: F) -> Update<Self, F>
    where
        F: FnMut(&mut Self::Output) + Clone + Send + 'static
, { ... }
fn map<B, F>(self, f: F) -> Map<Self, F>
    where
        F: FnMut(Self::Output) -> B + Clone + Send + 'static
, { ... }
fn flat_map<B, F>(self, f: F) -> FlatMap<Self, F>
    where
        B: Stream,
        F: FnMut(Self::Output) -> B + Clone + Send + 'static
, { ... }
fn filter<F>(self, f: F) -> Filter<Self, F>
    where
        F: FnMut(&Self::Output) -> bool + Clone + Send + 'static
, { ... }
fn cloned<'a, T>(self) -> Cloned<Self, T, Input>
    where
        Input: 'a,
        Self: ParallelPipe<&'a Input, Output = &'a T>,
        T: Clone + 'a
, { ... }
fn left_join<K, V1, V2>(
        self,
        right: impl IntoIterator<Item = (K, V2)>
    ) -> LeftJoin<Self, K, V1, V2>
    where
        K: Eq + Hash + Clone + Send + 'static,
        Self: ParallelPipe<Input, Output = (K, V1)>,
        V1: 'static,
        V2: Clone + Send + 'static
, { ... }
fn inner_join<K, V1, V2>(
        self,
        right: impl IntoIterator<Item = (K, V2)>
    ) -> InnerJoin<Self, K, V1, V2>
    where
        K: Eq + Hash + Clone + Send + 'static,
        Self: ParallelPipe<Input, Output = (K, V1)>,
        V1: 'static,
        V2: Clone + Send + 'static
, { ... }
fn pipe<S>(self, sink: S) -> Pipe<Self, S>
    where
        S: ParallelSink<Self::Output>
, { ... }
fn fork<A, B, RefAItem>(
        self,
        sink: A,
        sink_ref: B
    ) -> Fork<Self, A, B, &'static Self::Output>
    where
        A: ParallelSink<Self::Output>,
        B: for<'a> ParallelSink<&'a Self::Output>
, { ... }
fn for_each<F>(self, f: F) -> ForEach<Self, F>
    where
        F: FnMut(Self::Output) + Clone + Send + 'static
, { ... }
fn fold<ID, F, B>(self, identity: ID, op: F) -> Fold<Self, ID, F, B>
    where
        B: Send + 'static,
        F: FnMut(B, Either<Self::Output, B>) -> B + Clone + Send + 'static,
        ID: FnMut() -> B + Clone + Send + 'static
, { ... }
fn group_by<S, A, B>(self, sink: S) -> GroupBy<Self, S>
    where
        A: Eq + Hash + Send + 'static,
        S: ParallelSink<B>,
        Self: ParallelPipe<Input, Output = (A, B)>,
        <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: Clone,
        <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: Send,
        <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: 'static,
        <S as ParallelSink<B>>::ReduceA: 'static,
        <S as ParallelSink<B>>::ReduceC: Clone,
        <S as ParallelSink<B>>::Done: Send,
        <S as ParallelSink<B>>::Done: 'static
, { ... }
fn histogram(self) -> Histogram<Self>
    where
        Self::Output: Hash,
        Self::Output: Ord,
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn sort_n_by<F>(self, n: usize, cmp: F) -> Sort<Self, F>
    where
        F: Fn(&Self::Output, &Self::Output) -> Ordering + Clone + Send + 'static,
        Self::Output: Clone,
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn count(self) -> Count<Self> { ... }
fn sum<B>(self) -> Sum<Self, B>
    where
        B: Sum<Self::Output> + Sum<B> + Send + 'static
, { ... }
fn mean(self) -> Mean<Self>
    where
        Self: ParallelPipe<Input, Output = f64>
, { ... }
fn stddev(self) -> StdDev<Self>
    where
        Self: ParallelPipe<Input, Output = f64>
, { ... }
fn combine<F>(self, f: F) -> Combine<Self, F>
    where
        F: FnMut(Self::Output, Self::Output) -> Self::Output + Clone + Send + 'static,
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn max(self) -> Max<Self>
    where
        Self::Output: Ord,
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn max_by<F>(self, f: F) -> MaxBy<Self, F>
    where
        F: FnMut(&Self::Output, &Self::Output) -> Ordering + Clone + Send + 'static,
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn max_by_key<F, B>(self, f: F) -> MaxByKey<Self, F>
    where
        B: Ord + 'static,
        F: FnMut(&Self::Output) -> B + Clone + Send + 'static,
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn min(self) -> Min<Self>
    where
        Self::Output: Ord,
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn min_by<F>(self, f: F) -> MinBy<Self, F>
    where
        F: FnMut(&Self::Output, &Self::Output) -> Ordering + Clone + Send + 'static,
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn min_by_key<F, B>(self, f: F) -> MinByKey<Self, F>
    where
        B: Ord + 'static,
        F: FnMut(&Self::Output) -> B + Clone + Send + 'static,
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn most_frequent(
        self,
        n: usize,
        probability: f64,
        tolerance: f64
    ) -> MostFrequent<Self>
    where
        Self::Output: Hash,
        Self::Output: Eq,
        Self::Output: Clone,
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn most_distinct<A, B>(
        self,
        n: usize,
        probability: f64,
        tolerance: f64,
        error_rate: f64
    ) -> MostDistinct<Self>
    where
        A: Hash + Eq + Clone + Send + 'static,
        B: Hash + 'static,
        Self: ParallelPipe<Input, Output = (A, B)>
, { ... }
fn sample_unstable(self, samples: usize) -> SampleUnstable<Self>
    where
        Self::Output: Send,
        Self::Output: 'static
, { ... }
fn all<F>(self, f: F) -> All<Self, F>
    where
        F: FnMut(Self::Output) -> bool + Clone + Send + 'static
, { ... }
fn any<F>(self, f: F) -> Any<Self, F>
    where
        F: FnMut(Self::Output) -> bool + Clone + Send + 'static
, { ... }
fn collect<B>(self) -> Collect<Self, B>
    where
        B: FromParallelStream<Self::Output>
, { ... } }

Associated Types

type Output

type Task: PipeTask<Input> + Send

Loading content...

Required methods

fn task(&self) -> Self::Task

Loading content...

Provided methods

fn inspect<F>(self, f: F) -> Inspect<Self, F> where
    F: FnMut(&Self::Output) + Clone + Send + 'static, 

fn update<F>(self, f: F) -> Update<Self, F> where
    F: FnMut(&mut Self::Output) + Clone + Send + 'static, 

fn map<B, F>(self, f: F) -> Map<Self, F> where
    F: FnMut(Self::Output) -> B + Clone + Send + 'static, 

fn flat_map<B, F>(self, f: F) -> FlatMap<Self, F> where
    B: Stream,
    F: FnMut(Self::Output) -> B + Clone + Send + 'static, 

fn filter<F>(self, f: F) -> Filter<Self, F> where
    F: FnMut(&Self::Output) -> bool + Clone + Send + 'static, 

fn cloned<'a, T>(self) -> Cloned<Self, T, Input> where
    Input: 'a,
    Self: ParallelPipe<&'a Input, Output = &'a T>,
    T: Clone + 'a, 

fn left_join<K, V1, V2>(
    self,
    right: impl IntoIterator<Item = (K, V2)>
) -> LeftJoin<Self, K, V1, V2> where
    K: Eq + Hash + Clone + Send + 'static,
    Self: ParallelPipe<Input, Output = (K, V1)>,
    V1: 'static,
    V2: Clone + Send + 'static, 

fn inner_join<K, V1, V2>(
    self,
    right: impl IntoIterator<Item = (K, V2)>
) -> InnerJoin<Self, K, V1, V2> where
    K: Eq + Hash + Clone + Send + 'static,
    Self: ParallelPipe<Input, Output = (K, V1)>,
    V1: 'static,
    V2: Clone + Send + 'static, 

fn pipe<S>(self, sink: S) -> Pipe<Self, S> where
    S: ParallelSink<Self::Output>, 

fn fork<A, B, RefAItem>(
    self,
    sink: A,
    sink_ref: B
) -> Fork<Self, A, B, &'static Self::Output> where
    A: ParallelSink<Self::Output>,
    B: for<'a> ParallelSink<&'a Self::Output>, 

fn for_each<F>(self, f: F) -> ForEach<Self, F> where
    F: FnMut(Self::Output) + Clone + Send + 'static, 

fn fold<ID, F, B>(self, identity: ID, op: F) -> Fold<Self, ID, F, B> where
    B: Send + 'static,
    F: FnMut(B, Either<Self::Output, B>) -> B + Clone + Send + 'static,
    ID: FnMut() -> B + Clone + Send + 'static, 

fn group_by<S, A, B>(self, sink: S) -> GroupBy<Self, S> where
    A: Eq + Hash + Send + 'static,
    S: ParallelSink<B>,
    Self: ParallelPipe<Input, Output = (A, B)>,
    <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: Clone,
    <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: Send,
    <<S as ParallelSink<B>>::Pipe as ParallelPipe<B>>::Task: 'static,
    <S as ParallelSink<B>>::ReduceA: 'static,
    <S as ParallelSink<B>>::ReduceC: Clone,
    <S as ParallelSink<B>>::Done: Send,
    <S as ParallelSink<B>>::Done: 'static, 

fn histogram(self) -> Histogram<Self> where
    Self::Output: Hash,
    Self::Output: Ord,
    Self::Output: Send,
    Self::Output: 'static, 

fn sort_n_by<F>(self, n: usize, cmp: F) -> Sort<Self, F> where
    F: Fn(&Self::Output, &Self::Output) -> Ordering + Clone + Send + 'static,
    Self::Output: Clone,
    Self::Output: Send,
    Self::Output: 'static, 

fn count(self) -> Count<Self>

fn sum<B>(self) -> Sum<Self, B> where
    B: Sum<Self::Output> + Sum<B> + Send + 'static, 

fn mean(self) -> Mean<Self> where
    Self: ParallelPipe<Input, Output = f64>, 

fn stddev(self) -> StdDev<Self> where
    Self: ParallelPipe<Input, Output = f64>, 

fn combine<F>(self, f: F) -> Combine<Self, F> where
    F: FnMut(Self::Output, Self::Output) -> Self::Output + Clone + Send + 'static,
    Self::Output: Send,
    Self::Output: 'static, 

fn max(self) -> Max<Self> where
    Self::Output: Ord,
    Self::Output: Send,
    Self::Output: 'static, 

fn max_by<F>(self, f: F) -> MaxBy<Self, F> where
    F: FnMut(&Self::Output, &Self::Output) -> Ordering + Clone + Send + 'static,
    Self::Output: Send,
    Self::Output: 'static, 

fn max_by_key<F, B>(self, f: F) -> MaxByKey<Self, F> where
    B: Ord + 'static,
    F: FnMut(&Self::Output) -> B + Clone + Send + 'static,
    Self::Output: Send,
    Self::Output: 'static, 

fn min(self) -> Min<Self> where
    Self::Output: Ord,
    Self::Output: Send,
    Self::Output: 'static, 

fn min_by<F>(self, f: F) -> MinBy<Self, F> where
    F: FnMut(&Self::Output, &Self::Output) -> Ordering + Clone + Send + 'static,
    Self::Output: Send,
    Self::Output: 'static, 

fn min_by_key<F, B>(self, f: F) -> MinByKey<Self, F> where
    B: Ord + 'static,
    F: FnMut(&Self::Output) -> B + Clone + Send + 'static,
    Self::Output: Send,
    Self::Output: 'static, 

fn most_frequent(
    self,
    n: usize,
    probability: f64,
    tolerance: f64
) -> MostFrequent<Self> where
    Self::Output: Hash,
    Self::Output: Eq,
    Self::Output: Clone,
    Self::Output: Send,
    Self::Output: 'static, 

fn most_distinct<A, B>(
    self,
    n: usize,
    probability: f64,
    tolerance: f64,
    error_rate: f64
) -> MostDistinct<Self> where
    A: Hash + Eq + Clone + Send + 'static,
    B: Hash + 'static,
    Self: ParallelPipe<Input, Output = (A, B)>, 

fn sample_unstable(self, samples: usize) -> SampleUnstable<Self> where
    Self::Output: Send,
    Self::Output: 'static, 

fn all<F>(self, f: F) -> All<Self, F> where
    F: FnMut(Self::Output) -> bool + Clone + Send + 'static, 

fn any<F>(self, f: F) -> Any<Self, F> where
    F: FnMut(Self::Output) -> bool + Clone + Send + 'static, 

fn collect<B>(self) -> Collect<Self, B> where
    B: FromParallelStream<Self::Output>, 

Loading content...

Implementations on Foreign Types

impl<Input, I0> ParallelPipe<Input> for (I0,) where
    I0: ParallelPipe<Input>, 
[src]

type Output = Sum1<<I0 as ParallelPipe<Input>>::Output>

type Task = (<I0 as ParallelPipe<Input>>::Task,)

impl<Input, I0, I1, I2, I3, I4, I5, I6, I7> ParallelPipe<Input> for (I0, I1, I2, I3, I4, I5, I6, I7) where
    I0: ParallelPipe<Input>,
    I1: ParallelPipe<Input>,
    I2: ParallelPipe<Input>,
    I3: ParallelPipe<Input>,
    I4: ParallelPipe<Input>,
    I5: ParallelPipe<Input>,
    I6: ParallelPipe<Input>,
    I7: ParallelPipe<Input>,
    Input: Copy
[src]

type Output = Sum8<<I0 as ParallelPipe<Input>>::Output, <I1 as ParallelPipe<Input>>::Output, <I2 as ParallelPipe<Input>>::Output, <I3 as ParallelPipe<Input>>::Output, <I4 as ParallelPipe<Input>>::Output, <I5 as ParallelPipe<Input>>::Output, <I6 as ParallelPipe<Input>>::Output, <I7 as ParallelPipe<Input>>::Output>

type Task = (<I0 as ParallelPipe<Input>>::Task, <I1 as ParallelPipe<Input>>::Task, <I2 as ParallelPipe<Input>>::Task, <I3 as ParallelPipe<Input>>::Task, <I4 as ParallelPipe<Input>>::Task, <I5 as ParallelPipe<Input>>::Task, <I6 as ParallelPipe<Input>>::Task, <I7 as ParallelPipe<Input>>::Task)

impl<Input> ParallelPipe<Input> for ()[src]

type Output = Sum0

type Task = ()

impl<Input, I0, I1, I2, I3, I4, I5> ParallelPipe<Input> for (I0, I1, I2, I3, I4, I5) where
    I0: ParallelPipe<Input>,
    I1: ParallelPipe<Input>,
    I2: ParallelPipe<Input>,
    I3: ParallelPipe<Input>,
    I4: ParallelPipe<Input>,
    I5: ParallelPipe<Input>,
    Input: Copy
[src]

type Output = Sum6<<I0 as ParallelPipe<Input>>::Output, <I1 as ParallelPipe<Input>>::Output, <I2 as ParallelPipe<Input>>::Output, <I3 as ParallelPipe<Input>>::Output, <I4 as ParallelPipe<Input>>::Output, <I5 as ParallelPipe<Input>>::Output>

type Task = (<I0 as ParallelPipe<Input>>::Task, <I1 as ParallelPipe<Input>>::Task, <I2 as ParallelPipe<Input>>::Task, <I3 as ParallelPipe<Input>>::Task, <I4 as ParallelPipe<Input>>::Task, <I5 as ParallelPipe<Input>>::Task)

impl<A, B, Input> ParallelPipe<Input> for Sum2<A, B> where
    A: ParallelPipe<Input>,
    B: ParallelPipe<Input, Output = <A as ParallelPipe<Input>>::Output>, 
[src]

type Output = <A as ParallelPipe<Input>>::Output

type Task = Sum2<<A as ParallelPipe<Input>>::Task, <B as ParallelPipe<Input>>::Task>

impl<Input, I0, I1> ParallelPipe<Input> for (I0, I1) where
    I0: ParallelPipe<Input>,
    I1: ParallelPipe<Input>,
    Input: Copy
[src]

type Output = Sum2<<I0 as ParallelPipe<Input>>::Output, <I1 as ParallelPipe<Input>>::Output>

type Task = (<I0 as ParallelPipe<Input>>::Task, <I1 as ParallelPipe<Input>>::Task)

impl<Input, I0, I1, I2, I3> ParallelPipe<Input> for (I0, I1, I2, I3) where
    I0: ParallelPipe<Input>,
    I1: ParallelPipe<Input>,
    I2: ParallelPipe<Input>,
    I3: ParallelPipe<Input>,
    Input: Copy
[src]

type Output = Sum4<<I0 as ParallelPipe<Input>>::Output, <I1 as ParallelPipe<Input>>::Output, <I2 as ParallelPipe<Input>>::Output, <I3 as ParallelPipe<Input>>::Output>

type Task = (<I0 as ParallelPipe<Input>>::Task, <I1 as ParallelPipe<Input>>::Task, <I2 as ParallelPipe<Input>>::Task, <I3 as ParallelPipe<Input>>::Task)

impl<Input, I0, I1, I2> ParallelPipe<Input> for (I0, I1, I2) where
    I0: ParallelPipe<Input>,
    I1: ParallelPipe<Input>,
    I2: ParallelPipe<Input>,
    Input: Copy
[src]

type Output = Sum3<<I0 as ParallelPipe<Input>>::Output, <I1 as ParallelPipe<Input>>::Output, <I2 as ParallelPipe<Input>>::Output>

type Task = (<I0 as ParallelPipe<Input>>::Task, <I1 as ParallelPipe<Input>>::Task, <I2 as ParallelPipe<Input>>::Task)

impl<Input, I0, I1, I2, I3, I4, I5, I6> ParallelPipe<Input> for (I0, I1, I2, I3, I4, I5, I6) where
    I0: ParallelPipe<Input>,
    I1: ParallelPipe<Input>,
    I2: ParallelPipe<Input>,
    I3: ParallelPipe<Input>,
    I4: ParallelPipe<Input>,
    I5: ParallelPipe<Input>,
    I6: ParallelPipe<Input>,
    Input: Copy
[src]

type Output = Sum7<<I0 as ParallelPipe<Input>>::Output, <I1 as ParallelPipe<Input>>::Output, <I2 as ParallelPipe<Input>>::Output, <I3 as ParallelPipe<Input>>::Output, <I4 as ParallelPipe<Input>>::Output, <I5 as ParallelPipe<Input>>::Output, <I6 as ParallelPipe<Input>>::Output>

type Task = (<I0 as ParallelPipe<Input>>::Task, <I1 as ParallelPipe<Input>>::Task, <I2 as ParallelPipe<Input>>::Task, <I3 as ParallelPipe<Input>>::Task, <I4 as ParallelPipe<Input>>::Task, <I5 as ParallelPipe<Input>>::Task, <I6 as ParallelPipe<Input>>::Task)

impl<Input, I0, I1, I2, I3, I4> ParallelPipe<Input> for (I0, I1, I2, I3, I4) where
    I0: ParallelPipe<Input>,
    I1: ParallelPipe<Input>,
    I2: ParallelPipe<Input>,
    I3: ParallelPipe<Input>,
    I4: ParallelPipe<Input>,
    Input: Copy
[src]

type Output = Sum5<<I0 as ParallelPipe<Input>>::Output, <I1 as ParallelPipe<Input>>::Output, <I2 as ParallelPipe<Input>>::Output, <I3 as ParallelPipe<Input>>::Output, <I4 as ParallelPipe<Input>>::Output>

type Task = (<I0 as ParallelPipe<Input>>::Task, <I1 as ParallelPipe<Input>>::Task, <I2 as ParallelPipe<Input>>::Task, <I3 as ParallelPipe<Input>>::Task, <I4 as ParallelPipe<Input>>::Task)

Loading content...

Implementors

impl<'a, P, Input, T> ParallelPipe<&'a Input> for Cloned<P, T, Input> where
    P: ParallelPipe<&'a Input, Output = &'a T>,
    T: 'a + Clone
[src]

type Output = T

type Task = ClonedTask<<P as ParallelPipe<&'a Input>>::Task>

impl<A, B, C, Input, RefAItem> ParallelPipe<Input> for Fork<A, B, C, RefAItem> where
    A: ParallelPipe<Input>,
    B: ParallelPipe<<A as ParallelPipe<Input>>::Output>,
    C: ParallelPipe<RefAItem>,
    RefAItem: 'static, 
[src]

type Output = Sum2<<B as ParallelPipe<<A as ParallelPipe<Input>>::Output>>::Output, <C as ParallelPipe<RefAItem>>::Output>

type Task = JoinTask<<A as ParallelPipe<Input>>::Task, <B as ParallelPipe<<A as ParallelPipe<Input>>::Output>>::Task, <C as ParallelPipe<RefAItem>>::Task, RefAItem>

impl<A, B, Input> ParallelPipe<Input> for Pipe<A, B> where
    A: ParallelPipe<Input>,
    B: ParallelPipe<<A as ParallelPipe<Input>>::Output>, 
[src]

type Output = <B as ParallelPipe<<A as ParallelPipe<Input>>::Output>>::Output

type Task = JoinTask<<A as ParallelPipe<Input>>::Task, <B as ParallelPipe<<A as ParallelPipe<Input>>::Output>>::Task>

impl<Item> ParallelPipe<Item> for Identity[src]

type Output = Item

type Task = IdentityTask

impl<P, F, Input> ParallelPipe<Input> for Filter<P, F> where
    F: for<'a> FnMut<(&'a <P as ParallelPipe<Input>>::Output,), Output = bool> + Clone + Send + 'static,
    P: ParallelPipe<Input>, 
[src]

type Output = <P as ParallelPipe<Input>>::Output

type Task = FilterTask<<P as ParallelPipe<Input>>::Task, F>

impl<P, F, Input> ParallelPipe<Input> for Inspect<P, F> where
    F: for<'a> FnMut<(&'a <P as ParallelPipe<Input>>::Output,), Output = ()> + Clone + Send + 'static,
    P: ParallelPipe<Input>, 
[src]

type Output = <P as ParallelPipe<Input>>::Output

type Task = InspectTask<<P as ParallelPipe<Input>>::Task, F>

impl<P, F, Input> ParallelPipe<Input> for Update<P, F> where
    F: for<'a> FnMut<(&'a mut <P as ParallelPipe<Input>>::Output,), Output = ()> + Clone + Send + 'static,
    P: ParallelPipe<Input>, 
[src]

type Output = <P as ParallelPipe<Input>>::Output

type Task = UpdateTask<<P as ParallelPipe<Input>>::Task, F>

impl<P, F, R, Input> ParallelPipe<Input> for FilterMapSync<P, F> where
    F: FnMut<(<P as ParallelPipe<Input>>::Output,), Output = Option<R>> + Clone + Send + 'static,
    P: ParallelPipe<Input>, 
[src]

type Output = R

type Task = FilterMapSyncTask<<P as ParallelPipe<Input>>::Task, F>

impl<P, F, R, Input> ParallelPipe<Input> for FlatMap<P, F> where
    F: FnMut<(<P as ParallelPipe<Input>>::Output,), Output = R> + Clone + Send + 'static,
    P: ParallelPipe<Input>,
    R: Stream
[src]

type Output = <R as Stream>::Item

type Task = FlatMapTask<<P as ParallelPipe<Input>>::Task, F>

impl<P, F, R, Input> ParallelPipe<Input> for FlatMapSync<P, F> where
    F: FnMut<(<P as ParallelPipe<Input>>::Output,), Output = R> + Clone + Send + 'static,
    P: ParallelPipe<Input>,
    R: Iterator
[src]

type Output = <R as Iterator>::Item

type Task = FlatMapSyncTask<<P as ParallelPipe<Input>>::Task, F>

impl<P, F, R, Input> ParallelPipe<Input> for Map<P, F> where
    F: FnMut<(<P as ParallelPipe<Input>>::Output,), Output = R> + Clone + Send + 'static,
    P: ParallelPipe<Input>, 
[src]

type Output = R

type Task = MapTask<<P as ParallelPipe<Input>>::Task, F>

impl<P, F, R, Input> ParallelPipe<Input> for MapSync<P, F> where
    F: FnMut<(<P as ParallelPipe<Input>>::Output,), Output = R> + Clone + Send + 'static,
    P: ParallelPipe<Input>, 
[src]

type Output = R

type Task = MapSyncTask<<P as ParallelPipe<Input>>::Task, F>

impl<P, K, V1, V2, Input> ParallelPipe<Input> for InnerJoin<P, K, V1, V2> where
    K: Eq + Hash + Clone + Send + 'static,
    P: ParallelPipe<Input, Output = (K, V1)>,
    V1: 'static,
    V2: Clone + Send + 'static, 
[src]

type Output = (K, ImplIter<V1>, ImplIter<V2>)

type Task = <FilterMapSync<P, InnerJoinClosure<K, V1, V2>> as ParallelPipe<Input>>::Task

impl<P, K, V1, V2, Input> ParallelPipe<Input> for LeftJoin<P, K, V1, V2> where
    K: Eq + Hash + Clone + Send + 'static,
    P: ParallelPipe<Input, Output = (K, V1)>,
    V1: 'static,
    V2: Clone + Send + 'static, 
[src]

type Output = (K, V1, ImplIter<V2>)

type Task = <MapSync<P, LeftJoinClosure<K, V1, V2>> as ParallelPipe<Input>>::Task

Loading content...