We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unfoldable
No description provided.
The text was updated successfully, but these errors were encountered:
What's the law for this one?
Sorry, something went wrong.
I'm not sure why I opened this actually, I think like Foldable it's probably lawless.
Foldable
Closest thing I've found:
http://citeseer.ist.psu.edu/viewdoc/summary?doi=10.1.1.42.1735
It states that h = unfold p f g is equivalent to h x = if p x then [] else f x : h (g x), but I'm not sure that adds anything to the table.
h = unfold p f g
h x = if p x then [] else f x : h (g x)
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: