pub trait Applicative<A, B>: Apply<A, B> + Pure { }
Expand description
Applicative functor. This is a stronger version of Apply that has pure. See the module level documentation for more.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.