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
The R parser has left associativity, so x + 10 + 200 is ((x + 10) + 200). So this is not being folded to x + 210.
x + 10 + 200
((x + 10) + 200)
x + 210
If we consider operators with associativity, we could replace x + 10 + 200 to 10 + 200 + x, and then fold it to 210 + x.
10 + 200 + x
210 + x
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The R parser has left associativity, so
x + 10 + 200
is((x + 10) + 200)
. So this is not being folded tox + 210
.If we consider operators with associativity, we could replace
x + 10 + 200
to10 + 200 + x
, and then fold it to210 + x
.The text was updated successfully, but these errors were encountered: