< Rebol Programming

USAGE:

CONSTRUCT block /with object 

DESCRIPTION:

Creates an object, but without evaluating its specification.

CONSTRUCT is a native value.

ARGUMENTS

  • block -- Object specification block (Type: block)

REFINEMENTS

  • /with -- Provide a default base object
    • object -- (Type: object)

SOURCE CODE

construct: native[
    {Creates an object, but without evaluating its specification.} 
    block [block!] "Object specification block" 
    /with "Provide a default base object" object [object!]
]

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