< Rebol Programming

USAGE:

COMPRESS data 

DESCRIPTION:

Compresses a string series and returns it.

COMPRESS is a native value.

ARGUMENTS

  • data -- Data to compress (Type: any-string)

SOURCE CODE

compress: native[
    "Compresses a string series and returns it." 
    data [any-string!] "Data to compress"
]

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.