purescript-functions
purescript-functions copied to clipboard
Function combinators and types for multi-argument functions
Results
1
purescript-functions issues
Sort by
recently updated
recently updated
newest added
From ffi ``` js exports.runFn3 = function (fn) { return function (a) { return function (b) { return function (c) { return fn(a, b, c); }; }; }; }; ```...
type: documentation