Trait indicator::operator::Operator[][src]

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.

Implementors