Trait functional::BinaryOperation [] [src]

pub trait BinaryOperation<T> {
    fn apply(lhs: T, rhs: T) -> T;
}

Define binary operation as type

Required Methods

fn apply(lhs: T, rhs: T) -> T

Implementors