pub trait Operator<I> {
    type Output;

    fn next(&mut self, input: I) -> Self::Output;
}
Expand description

Operator.

Required Associated Types

Output type.

Required Methods

Produce the next output.

Implementations on Foreign Types

Implementors