forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Compose
angerangel edited this page Mar 15, 2013
·
1 revision
COMPOSE value /deep /only /into out
Evaluates a block of expressions, only evaluating parens, and returns a block.
COMPOSE is a native value.
- value -- Block to compose
- /deep -- Compose nested blocks
- /only -- Insert a block as a single value (not the contents of the block)
-
/into -- Output results into a block with no intermediate storage
- out (any-block!)
#SOURCE
compose: make native! [ [
{Evaluates a block of expressions, only evaluating parens, and returns a block.}
value "Block to compose"
/deep "Compose nested blocks"
/only {Insert a block as a single value (not the contents of the block)}
/into {Output results into a block with no intermediate storage}
out [any-block!]
] ]