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
I have expression using [Flags]enum type where I would like to reset a bit using like "b = ~a;"
See also https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/bitwise-and-shift-operators#bitwise-complement-operator-
Is there a way to get this done? opposite operation with | works just fine.
The text was updated successfully, but these errors were encountered:
I forgot to handle the unary operators in #237 ... It should be pretty straightforward to implement.
Sorry, something went wrong.
Handle unary operator on enums
a91ed74
Fixes dynamicexpresso#261
Handle unary operator on enums (#265)
25a41f5
* Handle unary operator on enums Fixes #261
Successfully merging a pull request may close this issue.
I have expression using [Flags]enum type where I would like to reset a bit using like "b = ~a;"
See also https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/bitwise-and-shift-operators#bitwise-complement-operator-
Is there a way to get this done? opposite operation with | works just fine.
The text was updated successfully, but these errors were encountered: