| Copyright | 2016 John Ky |
|---|---|
| License | MIT |
| Safe Haskell | None |
| Language | Haskell2010 |
HaskellWorks.Data.Bits.ElemFixedBitSize
Description
Succinct operations.
- class ElemFixedBitSize v where
- type Elem v
Documentation
class ElemFixedBitSize v where Source #
Class of values that have elements of a fixed bit size
>>>elemFixedBitSize (Vector Word8)8
Minimal complete definition
Methods
elemFixedBitSize :: v -> Count Source #
Get the bit size of an element for a given composite bit-string type.
>>>elemFixedBitSize (Vector Word8)8
Instances