Expand description
Bitwise operations on binary string representations
Structsยง
- BitAnd
Str - BIT_AND_STR - Bitwise AND on binary strings
- BitCount
- BIT_COUNT - Count number of 1s in binary string
- BitFlip
- BIT_FLIP - Alias for BIT_NOT_STR
- BitNot
Str - BIT_NOT_STR - Bitwise NOT on binary string
- BitOr
Str - BIT_OR_STR - Bitwise OR on binary strings
- BitRotate
Left - BIT_ROTATE_LEFT - Rotate binary string left by N positions
- BitRotate
Right - BIT_ROTATE_RIGHT - Rotate binary string right by N positions
- BitShift
Left - BIT_SHIFT_LEFT - Shift binary string left, filling with zeros
- BitShift
Right - BIT_SHIFT_RIGHT - Shift binary string right, filling with zeros
- BitXor
Str - BIT_XOR_STR - Bitwise XOR on binary strings
- Hamming
Distance - HAMMING_DISTANCE - Count bit differences between two binary strings