Add an apply function to the Async monad
This commit is contained in:
parent
06f0b21e85
commit
5048fb134c
1 changed files with 7 additions and 0 deletions
7
async.js
7
async.js
|
@ -1,5 +1,6 @@
|
||||||
function Async() {
|
function Async() {
|
||||||
return {
|
return {
|
||||||
|
apply: apply,
|
||||||
bind: bind,
|
bind: bind,
|
||||||
parallel: parallel,
|
parallel: parallel,
|
||||||
run: run,
|
run: run,
|
||||||
|
@ -8,6 +9,12 @@ function Async() {
|
||||||
wrap: wrap
|
wrap: wrap
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function apply(f, x) {
|
||||||
|
return function(g) {
|
||||||
|
g(f(x));
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
function bind(m, f) {
|
function bind(m, f) {
|
||||||
return function(g) {
|
return function(g) {
|
||||||
m(function(x) {
|
m(function(x) {
|
||||||
|
|
Loading…
Reference in a new issue