MissingH-1.6.0.2: Large utility library
CopyrightCopyright (C) 2004 Ian Lynagh
LicenseBSD-3-Clause
Stabilitystable
Portabilityportable
Safe HaskellSafe
LanguageHaskell2010

Data.Compression.Inflate

Description

Inflate algorithm implementation

Copyright (C) 2004 Ian Lynagh

Synopsis

Documentation

inflate_string :: String -> String Source #

inflate_string_remainder :: String -> (String, String) Source #

Returns (Data, Remainder)

inflate :: [Int] -> (Output, [Bit]) Source #

type Output = [Word32] Source #

data Bit Source #

Instances

Instances details
Show Bit Source # 
Instance details

Defined in Data.Compression.Inflate

Methods

showsPrec :: Int -> Bit -> ShowS

show :: Bit -> String

showList :: [Bit] -> ShowS

Eq Bit Source # 
Instance details

Defined in Data.Compression.Inflate

Methods

(==) :: Bit -> Bit -> Bool

(/=) :: Bit -> Bit -> Bool

bits_to_word32 :: [Bit] -> Word32 Source #