Libraries |
|
Inflate | Source Code |
|
|
Function Summary | |||||
string |
| ||||
string |
|
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.
|
|