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
Depends on PR #1421.
LetRec would be useful to implement "where" blocks and local/anonymous recursive functions.
A LetRec node would specify a block of local mutually recursive definitions:
letrec { f1 := A1; f2 := A2; ... fn := An; } in B
where all of f1, ..., fn may appear recursively in A1, ..., An
LetRec Node definition:
LetRec {letrecInfo :: Info, letrecValues :: NonEmpty Node, letrecBody :: Node}
The text was updated successfully, but these errors were encountered:
lukaszcz
Successfully merging a pull request may close this issue.
Depends on PR #1421.
LetRec would be useful to implement "where" blocks and local/anonymous recursive functions.
A LetRec node would specify a block of local mutually recursive definitions:
where all of f1, ..., fn may appear recursively in A1, ..., An
LetRec Node definition:
The text was updated successfully, but these errors were encountered: