Perform left & right operation on two arrays. If either left or right value is null
then the result is also null.
Perform left & !right operation on two arrays. If either left or right value is null
then the result is also null.
Perform bitwise and every value in an array with the scalar. If any value in the array is null then the
result is also null.
Perform !array operation on array. If array value is null
then the result is also null.
Perform left | right operation on two arrays. If either left or right value is null
then the result is also null.
Perform bitwise or every value in an array with the scalar. If any value in the array is null then the
result is also null.
Perform bitwise left << right operation on two arrays. If either left or right value is null
then the result is also null.
Perform bitwise left << right every value in an array with the scalar. If any value in the array is null then the
result is also null.
Perform bitwise left >> right operation on two arrays. If either left or right value is null
then the result is also null.
Perform bitwise left >> right every value in an array with the scalar. If any value in the array is null then the
result is also null.
Perform left ^ right operation on two arrays. If either left or right value is null
then the result is also null.
Perform bitwise xor every value in an array with the scalar. If any value in the array is null then the
result is also null.