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.
1 parent bba62a5 commit 24cff53Copy full SHA for 24cff53
docs/Curry-and-Uncurry-functions.md
@@ -47,15 +47,13 @@ let f_uncurry = fun %uncurry a b -> a + string_of_int b
47
48
- When is uncurried function recommended
49
50
- 1. For FFI to JS functions, all object methods are *strongly recommended*
51
- to type it as uncurried function
+ - For FFI to JS functions, all object methods are *strongly recommended*
+ to type it as uncurried function.
52
53
+ - When function is passed as a callback
54
-
55
- 2. When function is passed as a callback
56
57
- This is mostly for performance issues, it is hard to optimize in
58
- such scenario
+ This is mostly for performance issues, it is hard to optimize in
+ such scenario.
59
60
61
0 commit comments