Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sanctuary-js/sanctuary
/ curry2
Function
curry2
index.js:1711–1717 ·
view source on GitHub ↗
(f)
Source
from the content-addressed store, hash-verified
1709
//. [10, 100, 1000]
1710
//. ```
1711
function
curry2(f) {
1712
return
function
(x) {
1713
return
function
(y) {
1714
return
f (x, y);
1715
};
1716
};
1717
}
1718
_.curry2 = {
1719
consts: {},
1720
types: [$.Function ([a, b, c]), a, b, c],
Callers
3
index.js
File · 0.85
map.js
File · 0.85
equals.js
File · 0.85
Calls
1
f
Function · 0.85
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…