Package pw. binom
Types
Link copied to clipboard
Implements bitset based on Int. Index 0 is the most left bit. For example: index 30 in value 0b010 is 1, index 31 and 29 is 0
Link copied to clipboard
Implements bitset based on Long. Index 0 is the most left bit. For example: index 30 in value 0b010 is 1, index 31 and 29 is 0
Link copied to clipboard
abstract class BitArrayListIterator(cursor: Int) : ListIterator<Boolean>
Content copied to clipboard
Link copied to clipboard
class BitArrayListIteratorImpl(cursor: Int, sizeProvider: () -> Int, dataProvider: (Int) -> Boolean) : BitArrayListIterator
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Functions
Link copied to clipboard
Creates and return BytesBitArray using this array as data.