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

Interface for a lambda function of six arguments.

Required Methods§

Implementors§