pub trait RefOperator<'a, In> {
    type Output;

    // Required method
    fn next(&mut self, input: ValueRef<'a, In>) -> Self::Output;
}
Expand description

Operator that takes a ValueRef as input.

Required Associated Types§

source

type Output

The output type.

Required Methods§

source

fn next(&mut self, input: ValueRef<'a, In>) -> Self::Output

Apply the operator.

Implementors§

source§

impl<'a, In, P> RefOperator<'a, In> for Pwhere P: Operator<ValueRef<'a, In>>, In: 'a,

§

type Output = <P as Operator<ValueRef<'a, In>>>::Output