Trait naan::fun::F3

source ·
pub trait F3<A, B, C>: F3Once<A, B, C> {
    // Required method
    fn call(&self, a: A, b: B, c: C) -> Self::Ret;
}
Expand description

A function that accepts 3 arguments and can be called any number of times.

Required Methods§

source

fn call(&self, a: A, b: B, c: C) -> Self::Ret

Call the function with all arguments

Implementors§

source§

impl<F, A, B, C, D> F3<A, B, C> for Fwhere F: Fn(A, B, C) -> D,