pub trait Operator<I> {
    type Output;
    fn next(&mut self, input: I) -> Self::Output;
}
Expand description

Operator.

Associated Types

Output type.

Required methods

Produce the next output.

Implementations on Foreign Types

Implementors