BinaryOp

Trait BinaryOp 

Source
pub trait BinaryOp {
    type Set;

    // Required method
    fn op(&self, lhs: &Self::Set, rhs: &Self::Set) -> Self::Set;
}

Required Associated Types§

Required Methods§

Source

fn op(&self, lhs: &Self::Set, rhs: &Self::Set) -> Self::Set

Implementors§