Trait higher::Applicative

source ·
pub trait Applicative<'a, A>: Functor<'a, A> + Apply<'a, A> + Pure<A> { }
Expand description

An Applicative functor is anything which implements Functor, Apply and Pure.

Implementors§