Skip to content

Instantly share code, notes, and snippets.

@awto
Last active June 14, 2018 08:31
Show Gist options
  • Save awto/3e86cfaa9b6671e274932bf601c09111 to your computer and use it in GitHub Desktop.
Save awto/3e86cfaa9b6671e274932bf601c09111 to your computer and use it in GitHub Desktop.
non-determinism
const nonDet = run(
function*(value) { yield value },
function*(arg, fun) {
for(const i of arg)
yield* fun(i)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment