Compress.uncompressString(3kaya)
NAME
Compress::uncompressString - Uncompress a string.
SYNOPSIS
String uncompressString( String instr )
ARGUMENTS
instr The String to uncompress
DESCRIPTION
Uncompress a string generated with compressString. If uncompression
fails, a Compress.UncompressionFailed (3kaya) Exception will be thrown.
Unlike uncompressBinary you do not have to guess or record an uncompressed size, as compressed strings store this information internally
(if the string is corrupted, then this information may be wrong, so
uncompression will fail with an Exception)
AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others
(kaya@kayalang.org). For further information see http://kayalang.org/
LICENSE
The Kaya standard library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License (version 2.1 or any later version) as published by the Free
Software Foundation.
RELATED
- Compress.uncompressBinary (3kaya) Compress.compressString (3kaya)