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
As of today, when we want to write not in, we have to wrap the in clause with brackets and add a not or ! before it: !(foo in (2, 4, 6)).
not in
in
not
!
!(foo in (2, 4, 6))
I would like to see the ability to write foo not in (2, 4, 6) which feels way more natural and is easier to read.
foo not in (2, 4, 6)
Thanks in advance.
The text was updated successfully, but these errors were encountered:
#915
Sorry, something went wrong.
StefH
No branches or pull requests
As of today, when we want to write
not in
, we have to wrap thein
clause with brackets and add anot
or!
before it:!(foo in (2, 4, 6))
.I would like to see the ability to write
foo not in (2, 4, 6)
which feels way more natural and is easier to read.Thanks in advance.
The text was updated successfully, but these errors were encountered: