We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
f <$> arg1 <*> arg2 <*> ... <*> argN
1 parent 7f4e169 commit 8157482Copy full SHA for 8157482
src/Control/Apply.purs
@@ -26,6 +26,15 @@ import Control.Category (identity)
26
-- | the function application operator `($)` to arguments wrapped with the
27
-- | type constructor `f`.
28
-- |
29
+-- | Put differently...
30
+-- | ```
31
+-- | foo =
32
+-- | functionTakingNArguments <$> computationProducingArg1
33
+-- | <*> computationProducingArg2
34
+-- | <*> ...
35
+-- | <*> computationProducingArgN
36
37
+-- |
38
-- | Instances must satisfy the following law in addition to the `Functor`
39
-- | laws:
40
0 commit comments