< Rebol Programming

USAGE:

DECOMPRESS data 

DESCRIPTION:

Decompresses a binary series back to a string.

DECOMPRESS is a native value.

ARGUMENTS

  • data -- Data to decompress (Type: binary)

SOURCE CODE

decompress: native[
    "Decompresses a binary series back to a string." 
    data [binary!] "Data to decompress"
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.