### Versions: - jOOU latest - Java 8 ### Add bitwise operations Can we add bitwise operations to the library? See my question for motivation: https://stackoverflow.com/questions/68991707/how-to-do-unsigned-integer-bit-operations-in-java-1-8-that-match-ones-in-c So just like we have the `add` and `subtract` operators, add: ``` and or xor compliment leftShift rightShift rightShiftZeroFill ```
Versions:
Add bitwise operations
Can we add bitwise operations to the library?
See my question for motivation:
https://stackoverflow.com/questions/68991707/how-to-do-unsigned-integer-bit-operations-in-java-1-8-that-match-ones-in-c
So just like we have the
addandsubtractoperators, add: