Trait memselect::Selector3[][src]

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

A selector accepting three parameters.

Associated Types

Required Methods

Computes the value based on arguments arg1, arg2 and arg3.

Implementors