Data.ASN1.BitArray
- data BitArray = BitArray Word64 ByteString
- bitArrayLength :: BitArray -> Word64
- bitArrayGetBit :: BitArray -> Word64 -> Bool
- bitArrayGetData :: BitArray -> ByteString
- toBitArray :: ByteString -> Int -> BitArray
Documentation
bitArrayLength :: BitArray -> Word64
returns the length of bits in this bitarray
bitArrayGetBit :: BitArray -> Word64 -> Bool
get the nth bits
bitArrayGetData :: BitArray -> ByteString
get padded bytestring of the bitarray
toBitArray :: ByteString -> Int -> BitArray
number of bit to skip at the end (padding)