< Rebol Programming

USAGE:

AJOIN block 

DESCRIPTION:

Reduces and joins a block of values into a new string.

AJOIN is a function value.

ARGUMENTS

  • block -- (Type: block)

(SPECIAL ATTRIBUTES)

  • throw

SOURCE CODE

ajoin: func [
    {Reduces and joins a block of values into a new string.} 
    [throw] 
    block [block!]
][
    make string! reduce block
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.