Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

BitwiseOpType Enumeration

SymbolValueDescription
BitwiseOpNOT0Bitwise NOT: x[i] = ~x[i];
BitwiseOpOR1Bitwise OR: x[i] |= operand[i % DataSize];
BitwiseOpAND2Bitwise AND: x[i] &= operand[i % DataSize];
BitwiseOpXOR3Bitwise XOR: x[i] ^= operand[i % DataSize];