Expand description
Module contains bitwise operations on arrays
Functionsยง
- bitwise_
and - Perform
left & right
operation on two arrays. If either left or right value is null then the result is also null. - bitwise_
and_ not - Perform
left & !right
operation on two arrays. If either left or right value is null then the result is also null. - bitwise_
and_ scalar - 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. - bitwise_
not - Perform
!array
operation on array. If array value is null then the result is also null. - bitwise_
or - Perform
left | right
operation on two arrays. If either left or right value is null then the result is also null. - bitwise_
or_ scalar - 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. - bitwise_
shift_ left - Perform bitwise
left << right
operation on two arrays. If either left or right value is null then the result is also null. - bitwise_
shift_ left_ scalar - 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. - bitwise_
shift_ right - Perform bitwise
left >> right
operation on two arrays. If either left or right value is null then the result is also null. - bitwise_
shift_ right_ scalar - 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. - bitwise_
xor - Perform
left ^ right
operation on two arrays. If either left or right value is null then the result is also null. - bitwise_
xor_ scalar - 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.