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.
inflate64
const func string: inflate64 (inout file: compressed)
-
Decompress a file that was compressed with DEFLATE64.
DEFLATE64 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 DEFLATE64 format.
inflate64
const func string: inflate64 (in string: compressed)
-
Decompress a string that was compressed with DEFLATE64.
DEFLATE64 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 DEFLATE64 format.