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