pub trait RefOperator<'a, In> { type Output; // Required method fn next(&mut self, input: ValueRef<'a, In>) -> Self::Output; }
Operator that takes a ValueRef as input.
ValueRef
The output type.
Apply the operator.