crc-0.1.0.0: Implements various Cyclic Redundancy Checks (CRC)
Data.Digest.CRC32
newtype CRC32 Source #
Constructors
Fields
Instances
Methods
(==) :: CRC32 -> CRC32 -> Bool #
(/=) :: CRC32 -> CRC32 -> Bool #
compare :: CRC32 -> CRC32 -> Ordering #
(<) :: CRC32 -> CRC32 -> Bool #
(<=) :: CRC32 -> CRC32 -> Bool #
(>) :: CRC32 -> CRC32 -> Bool #
(>=) :: CRC32 -> CRC32 -> Bool #
max :: CRC32 -> CRC32 -> CRC32 #
min :: CRC32 -> CRC32 -> CRC32 #
showsPrec :: Int -> CRC32 -> ShowS #
show :: CRC32 -> String #
showList :: [CRC32] -> ShowS #
Associated Types
type CRCWord CRC32 = (r :: *) Source #
initCRC :: CRC32 Source #
crcWord :: CRC32 -> CRCWord CRC32 Source #
updateDigest :: CRC32 -> ByteString -> CRC32 Source #
crcTable :: Vector (CRCWord CRC32) Source #
digest :: CRC a => ByteString -> a Source #
updateDigest :: CRC a => a -> ByteString -> a Source #