forked from orion/obsidian
13 lines
164 B
Markdown
13 lines
164 B
Markdown
Generalizes [[Functor]] to functions with 2+ arguments
|
|
|
|
```haskell
|
|
apply ::
|
|
forall f a b
|
|
. Apply f
|
|
=> f (a -> b)
|
|
-> f a
|
|
-> f b
|
|
|
|
infixl apply as <*>
|
|
```
|