You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per title. I often find myself wanting to invert a condition an if is checking. For instance:
if (!a || !b)
{
}
I would like to invert to be:
if (a && b)
{
}
Is that what this plugin does? Also if so would it be possible to compile and upload a release? Having to get the SDK and build etc to test this is quite tedious ;).
The text was updated successfully, but these errors were encountered:
No, unfortunately it doesn’t support De Morgan’s law. I recommend you to
use HexRaysPyTools which is a python plugin which doesn’t need compilation
and has more features. You can find it on Github :-)
On Thu, Jun 13, 2019 at 21:24 Paul ***@***.***> wrote:
As per title. I often find myself wanting to invert a condition an if is
checking. For instance:
if (!a || !b)
{
}
I would like to invert to be:
if (a && b)
{
}
Is that what this plugin does? Also if so would it be possible to compile
and upload a release? Having to get the SDK and build etc to test this is
quite tedious ;).
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AD5NBPONPNALKW4LPW474YTP2KNFJANCNFSM4HX5KQ7A>
.
As per title. I often find myself wanting to invert a condition an if is checking. For instance:
I would like to invert to be:
Is that what this plugin does? Also if so would it be possible to compile and upload a release? Having to get the SDK and build etc to test this is quite tedious ;).
The text was updated successfully, but these errors were encountered: