Trait hetseq::F [] [src]

pub trait F<A> {
    type Output;
    fn call(&self, arg: A) -> Self::Output;
}

Substitution for Fn* traits family in stable and beta channels In nightly consider to use "nightly" feature and Fn* traits family Lambdas doesn't work with heterogenous sequences as they implement Fn* trait for only one parameters set

Associated Types

Output of the function

Required Methods

Call the function

Implementors