REBOL Programming/copy

< REBOL Programming

USAGE:

COPY value /part range /deep 

DESCRIPTION:

Returns a copy of a value.

COPY is an action value.

ARGUMENTS

REFINEMENTS

SOURCE CODE

copy: native[
    "Returns a copy of a value." 
    value [series! port! bitset!] "Usually a series" 
    /part "Limits to a given length or position." 
    range [number! series! port! pair!] 
    /deep "Also copies series values within the block."
]

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