pub trait IsLambda1<A, B> {
    fn call(&mut self, a: &A) -> B;
    fn deps_op(&self) -> Option<&Vec<Dep>>;
}
Expand description

Interface for a lambda function of one argument.

Required Methods§

Implementors§