Bit-wise operations
Element-wise bit operations
Computes the bitwise AND of the underlying binary representation of each element x1_i of the input array x1 with the respective element x2_i of the input array x2. |
|
Inverts (flips) each bit for each element x_i of the input array x. |
|
Computes the bitwise OR of the underlying binary representation of each element x1_i of the input array x1 with the respective element x2_i of the input array x2. |
|
Computes the bitwise XOR of the underlying binary representation of each element x1_i of the input array x1 with the respective element x2_i of the input array x2. |
|
Inverts (flips) each bit for each element x_i of the input array x. |
|
Inverts (flips) each bit for each element x_i of the input array x. |
|
Shifts the bits of each element x1_i of the input array x1 to the left by appending x2_i (i.e., the respective element in the input array x2) zeros to the right of x1_i. |
|
Shifts the bits of each element x1_i of the input array x1 to the left by appending x2_i (i.e., the respective element in the input array x2) zeros to the right of x1_i. |
|
Shifts the bits of each element x1_i of the input array x1 to the right according to the respective element x2_i of the input array x2. |
|
Shifts the bits of each element x1_i of the input array x1 to the right according to the respective element x2_i of the input array x2. |
Bit packing
Output formatting
Return the binary representation of the input number as a string. |