Set membership operators
| Name | Description | Case-sensitive |
|---|---|---|
| in | Returns true if the value equals any of the elements. |
Yes |
| !in | Returns true if the value doesn't equal any of the elements. |
Yes |
| in~ | Returns true if the value equals any of the elements. |
No |
| !in~ | Returns true if the value doesn't equal any of the elements. |
No |