pub trait IsLambda5<A, B, C, D, E, F> {
    fn call(&mut self, a: &A, b: &B, c: &C, d: &D, e: &E) -> F;
    fn deps_op(&self) -> Option<&Vec<Dep>>;
}
Expand description

Interface for a lambda function of five arguments.

Required Methods§

Implementors§