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

Interface for a lambda function of four arguments.

Required Methods§

Implementors§