Idris2Doc : Data.Compress.Interface

Data.Compress.Interface

(source)

Definitions

interfaceDecompressor : Type->Type
Parameters: a
Methods:
feed : a->ListBits8->EitherString (ListBits8, a)
  decompress a part of the compressed stream
done : a->EitherString (ListBits8)
  signify the compressed stream has been completely consumed
return the leftover data
init : a
  init state

Implementations:
DecompressorIdentityState
DecompressorInflateState
DecompressorGZipState
feed : Decompressora=>a->ListBits8->EitherString (ListBits8, a)
  decompress a part of the compressed stream

Visibility: public export
done : Decompressora=>a->EitherString (ListBits8)
  signify the compressed stream has been completely consumed
return the leftover data

Visibility: public export
init : Decompressora=>a
  init state

Visibility: public export
dataIdentityState : Type
Totality: total
Visibility: public export
Constructor: 
Id : IdentityState

Hint: 
DecompressorIdentityState
decompress : a->Decompressora=>ListBits8->EitherString (ListBits8)
Visibility: export