Skip to content
angerangel edited this page Mar 19, 2013 · 1 revision

USAGE

   MOLD value /only /all /flat

DESCRIPTION

Converts a value to a REBOL-readable string.

MOLD is a native value.

ARGUMENTS

  • value -- The value to mold (any-type!)

REFINEMENTS

  • /only -- For a block value, mold only its contents, no outer []
  • /all -- Mold in serialized format
  • /flat -- No indentation

#SOURCE

mold: make native! [  [
    "Converts a value to a REBOL-readable string."
    value [any-type!] "The value to mold"
    /only {For a block value, mold only its contents, no outer []}
    /all "Mold in serialized format"
    /flat "No indentation"
] ]
Clone this wiki locally