Skip to content

Instantly share code, notes, and snippets.

@kwijibo
Last active January 28, 2016 14:49
Show Gist options
  • Save kwijibo/e6a51626ab40e70cd039 to your computer and use it in GitHub Desktop.
Save kwijibo/e6a51626ab40e70cd039 to your computer and use it in GitHub Desktop.
map(f,g)(x) //map(pipe(f,g), x)
filter(f,g)(x) //filter(allPass(f,g), x)
pipeP(f,g)(handleError)(x) //pipe(pipeP(f,g), p=>p.catch(handleError))(x)
cond([f1,a1], [f2,a2])(x) //cond([[f1,a1], [f2,a2]], x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment