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
Is being pure function a requirement for Medley or could macro be consider for inclusion ?
I ask this because I have a variation of assoc-some called assoc-when that works like that:
assoc-some
assoc-when
(assoc-when m cond1 :k1 v1 cond2 :k2 v2 ...)
I first based it on Medley assoc-some but had to convert it into a macro so that values are not evaluated when associated condition is false.
The text was updated successfully, but these errors were encountered:
My initial gut feeling is that this isn't a good fit for Medley.
Sorry, something went wrong.
No branches or pull requests
Is being pure function a requirement for Medley or could macro be consider for inclusion ?
I ask this because I have a variation of
assoc-some
calledassoc-when
that works like that:I first based it on Medley
assoc-some
but had to convert it into a macro so that values are not evaluated when associated condition is false.The text was updated successfully, but these errors were encountered: