Libraries
Inflate Source Code
 previous   up   next 

Function Summary
string
inflate (inout file: compressed)
Decompress a file that was compressed with DEFLATE.
string
inflate (in string: compressed)
Decompress a string that was compressed with DEFLATE.

Function Detail

inflate

const func string: inflate (inout file: compressed)

Decompress a file that was compressed with DEFLATE. DEFLATE is a compression algorithm that uses a combination of the LZ77 algorithm and Huffman coding.

Returns:
the uncompressed string.
Raises:
RANGE_ERROR - If compressed is not in DEFLATE format.

inflate

const func string: inflate (in string: compressed)

Decompress a string that was compressed with DEFLATE. DEFLATE is a compression algorithm that uses a combination of the LZ77 algorithm and Huffman coding.

Returns:
the uncompressed string.
Raises:
RANGE_ERROR - If compressed is not in DEFLATE format.


 previous   up   next