Rebol Programming/compress

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:

[edit | edit source]
COMPRESS data 

DESCRIPTION:

[edit | edit source]

Compresses a string series and returns it.

COMPRESS is a native value.

ARGUMENTS

[edit | edit source]
  • data -- Data to compress (Type: any-string)

SOURCE CODE

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