Definition
/**
* Create an array overlap condition (&&).
*
* Example: array_overlap(col('tags'), raw_expr("ARRAY['sale', 'featured']"))
* Produces: tags && ARRAY['sale', 'featured']
*/
array_overlap(Expression $left, Expression $right) : OperatorCondition