[NAME] ALL.dao.operator.bitwise [TITLE] 比特运算符 [DESCRIPTION] 1 ~ (int|float) # Bitwise NOT; 2 3 (int|float) & (int|float) # Bitwise AND; 4 (int|float) | (int|float) # Bitwise OR; 5 (int|float) ^ (int|float) # Bitwise XOR; 6 7 (int|float) << (int|float) # Bitwise left shift; 8 (int|float) >> (int|float) # Bitwise right shift; Please note, non-integer operands are converted to integers.