YAML
ToString
format expression as YAML string
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
ToString(data,opts)
data
-
expression; data to be encoded as YAML
opts
(optional) options as specified below
style = one of block or inline.
Specifies whether structured objects in Maple should be to multi-line (block) or single-line (inline) output in YAML.
For example, if style=block a Maple list of three integers will produce a four-line YAML expression, while style=inline will produce a comma-delimited list on a single line.
The ToString(data) command formats the expression data as YAML (stored as a Maple string).
The input data must be a structured expression made only using the base types string, truefalse, realcons, and extended_numeric and the container types list, rtable, table, record, set(equation), DataSeries, and DataFrame.
with⁡YAML:
ToString⁡table⁡fruit=orange,count=23
--- - count: 23 fruit: orange
ToString⁡a=b,c=6.283185308
--- a: b c: 6.283185308
ToString⁡a=b,c=6.283185308,style=inline
{a: b, c: 6.283185308}
The YAML[ToString] command was introduced in Maple 2017.
For more information on Maple 2017 changes, see Updates in Maple 2017.
See Also
JSON[ToString]
YAML[ParseString]
Download Help Document