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
Both ++a and a++ map to plus_plus, though as one the differentiation between them still exists via different overrides.
++a
a++
plus_plus
That is ++a maps to plus_plus() and a++ to plus_plus(0); which makes sense given how the operators are defined in C++.
plus_plus()
plus_plus(0)
A feature add could be changing plus_plus to post_increment / pre_increment depending on which is detected. All of this is true with -- too.
post_increment
pre_increment
--
The text was updated successfully, but these errors were encountered:
This was documented via #229
The rest of this issue is just a feature request at this point.
Sorry, something went wrong.
Feature add PR: #238
No branches or pull requests
Both
++a
anda++
map toplus_plus
, though as one the differentiation between them still exists via different overrides.That is
++a
maps toplus_plus()
anda++
toplus_plus(0)
; which makes sense given how the operators are defined in C++.A feature add could be changing
plus_plus
topost_increment
/pre_increment
depending on which is detected. All of this is true with--
too.The text was updated successfully, but these errors were encountered: