Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bitfield: Refine API method names, add clearField(boolean), fix put32(..) ↵ | Sven Gothel | 2015-08-02 | 1 | -7/+16 |
| | | | | and bitCount(), add unit test (passed) | ||||
* | Bitfield: Refine impl. complete get/put 32bit, add copy*(..), add ↵ | Sven Gothel | 2015-07-31 | 1 | -20/+63 |
| | | | | synchronized delegation; TODO: Unit tests. | ||||
* | Bitfield: Use IndexOutOfBoundsException instead of ↵ | Sven Gothel | 2015-07-30 | 1 | -8/+8 |
| | | | | ArrayIndexOutOfBoundsException | ||||
* | Introduce Bitfield interface w/ Int32 and Int32Array impl. deprecating ↵ | Sven Gothel | 2015-07-30 | 1 | -0/+107 |
IntBitfield IntBitfield's 64bit bit-size is exceeding its use-case, making it less efficient and complicated. Bitfield offers a fast path implementation for 32 bits as well as a int[] implementation. TODO: 32 bit Unaligned putInt32(..) and getInt32(..), currently throwing UnsupportedOperationException for int[] impl. |