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
Should be able to do things like this...
defpartial minus(a, b, c), except: 2, do: a - b - c defpartial together(a, b, c, d), except: [2,3], do: a <> b <> c <> d defpartial plus(a, b, c), only: 2, do: a + b + c defpartial times(a, b, c), only: [1,2], do: a * b * c
...and have it generate or exclude the arities specified.
Once that this the case, we can consider merging Quark.Partial into Quark.Curry, as we won't have the "all arities" problem.
Quark.Partial
Quark.Curry
The text was updated successfully, but these errors were encountered:
expede
No branches or pull requests
Should be able to do things like this...
...and have it generate or exclude the arities specified.
Once that this the case, we can consider merging
Quark.Partial
intoQuark.Curry
, as we won't have the "all arities" problem.The text was updated successfully, but these errors were encountered: