📄️ bit_shift_left
将数值的二进制表示向左移动指定的位数。
📄️ bit_shift_right
将数值的二进制表示向右移动指定的位数。
📄️ bit_shift_right_logical
通过逻辑右移将数值的二进制表示向右移动指定的位数。
📄️ bitand
返回两个数值的按位 AND 运算结果。
📄️ bitnot
返回数值的按位取反结果。
📄️ bitor
返回两个数值的按位 OR 运算结果。
📄️ bitxor
返回两个数值的按位 XOR 运算结果。
AI generated answers are based on docs and other sources. Please test answers in non-production environments.