Method: Funkr::Categories::Applicative#apply
- Defined in:
- lib/funkr/categories/applicative.rb
#apply ⇒ Object
Apply the function living inside the functor . The type must be as follow :
Functor(λ(A) : B).apply(Functor(A)) : Functor(B)
11 12 13 |
# File 'lib/funkr/categories/applicative.rb', line 11 def apply raise "Applicative#apply not implemented" end |