Bitwise Work Class in Java

Is there a class that simplifies bitwise operation? I need some methods that read the integer "value" of the givem bit, their offset and length (in a 32/64 bit byte array).

I can use the bit manipulation available with java, but I rather use a debugged class.

+3
source share
2 answers
+4
source

Source: https://habr.com/ru/post/1784619/


All Articles