arrow_arith

Module bitwise

Source
Expand description

Module contains bitwise operations on arrays

Functionsยง

  • 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.
  • bitwise_op ๐Ÿ”’
    The helper function for bitwise operation with two array
  • 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.