Definition
/**
* Create a POSIX regex not match condition (!~).
* Case-sensitive.
*
* Example: not_regex_match(col('email'), literal_string('.*@spam\\.com'))
*
* Produces: email !~ '.*@spam\.com'
*/
not_regex_match(Expression $expr, Expression $pattern) : OperatorCondition