Trait memselect::Selector2[][src]

pub trait Selector2<A1, A2> {
    type Output;
    fn select(&mut self, arg1: A1, arg2: A2) -> Self::Output;
}

A selector accepting a two parameters.

Associated Types

Required Methods

Computes the value based on arguments arg1 and arg2.

Implementors