MCPcopy
hub / github.com/sanctuary-js/sanctuary / B

Function B

index.js:410–416  ·  view source on GitHub ↗
(f)

Source from the content-addressed store, hash-verified

408
409 // B :: (b -> c) -> (a -> b) -> a -> c
410 function B(f) {
411 return function(g) {
412 return function(x) {
413 return f (g (x));
414 };
415 };
416 }
417
418 // C :: (a -> b -> c) -> b -> a -> c
419 function C(f) {

Callers 6

get_Function · 0.85
index.jsFile · 0.85
_takeDropFunction · 0.85
getFunction · 0.85
parseJsonFunction · 0.85
toMatchFunction · 0.85

Calls 1

fFunction · 0.85

Tested by

no test coverage detected