< Rebol Programming

USAGE:

COMPOSE value /deep /only 

DESCRIPTION:

Evaluates a block of expressions, only evaluating parens, and returns a block.

COMPOSE is a native value.

ARGUMENTS

  • value -- Block to compose (Type: any)

REFINEMENTS

  • /deep -- Compose nested blocks
  • /only -- Inserts a block value as a block

SOURCE CODE

compose: native[
    {Evaluates a block of expressions, only evaluating parens, and returns a block.} 
    value "Block to compose" 
    /deep "Compose nested blocks" 
    /only "Inserts a block value as a block"
]

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