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
It would be useful to support negated matching, probably using !
Variable bindings get a little more tricky here. Obviously variables in a negated context should not bind, but this can be arbitrarily nested (like !(p(x) && q(x)), so we need to track whether we're in a positive or negative context. Double negation switches back to positive.
Judging from a quick code review this should be fairly easy to implement.
The text was updated successfully, but these errors were encountered:
It would be useful to support negated matching, probably using !
Variable bindings get a little more tricky here. Obviously variables in a negated context should not bind, but this can be arbitrarily nested (like !(p(x) && q(x)), so we need to track whether we're in a positive or negative context. Double negation switches back to positive.
Judging from a quick code review this should be fairly easy to implement.
The text was updated successfully, but these errors were encountered: