Skip to content

Instantly share code, notes, and snippets.

@kghost
Created December 31, 2018 14:49
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
function unfold(p, f, g, seed, reduce, tailgen) {
function recursive(iter) {
if (p(iter)) return tailgen(iter);
return reduce(f(iter), recursive(g(iter)));
}
return recursive(seed);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment