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