bitwise_and(x1, x2, /[, out, where, ...])
|
逐元素计算两个数组的按位 AND。 |
bitwise_or(x1, x2, /[, out, where, casting, ...])
|
逐元素计算两个数组的按位 OR。 |
bitwise_xor(x1, x2, /[, out, where, ...])
|
逐元素计算两个数组的按位 XOR。 |
invert(x, /[, out, where, casting, order, ...])
|
逐元素计算按位反转,即按位 NOT。 |
bitwise_invert(x, /[, out, where, casting, ...])
|
逐元素计算按位反转,即按位 NOT。 |
left_shift(x1, x2, /[, out, where, casting, ...])
|
将整数的位向左移位。 |
bitwise_left_shift(x1, x2, /[, out, where, ...])
|
将整数的位向左移位。 |
right_shift(x1, x2, /[, out, where, ...])
|
将整数的位向右移位。 |
bitwise_right_shift(x1, x2, /[, out, where, ...])
|
将整数的位向右移位。 |
bitwise_count(x, /[, out, where, casting, ...])
|
计算 x 的绝对值中 1 的位数。 |