All Questions
4 questions
2
votes
0
answers
126
views
Kaitai Struct: shift rotate >1 byte groups
This is an implementation of rotation (cyclic shift) of many-byte groups to the left. Rotate right is supported as negative amount. I would like to request, if someone would be willing, to review this ...
5
votes
3
answers
2k
views
Associating a name with each bit in a bitmask
I have the following code:
...
2
votes
1
answer
195
views
What specific optimizations can be made to this BitArray class, and how can they be implemented?
Here is the current code for the BitArray class needing optimization (implemented on big integers):
...