Hi everyone, Would it be possible to add another extended matching operator to already supported ones? It's just we have "or" in @() and "not (or)" in !(), but no "and". And combining patterns without it is awkward.
If I want to say "a and not b", I have to write "not (not a or c)", like this: !(!(a)|c) If we had "and" operator, say written like &(), it would be possible to write it as is instead: &(a|!(c)) which would be more readable. Is there a chance to have such an operator added? Thank you. Sincerely, Nick