toml
About 1 min
toml
Tom's Obvious, Minimal Language (TOML)
Description
TOML support within Murex is pretty mature however it is not considered a primitive. Which means, while it is a recommended builtin which you should expect in most deployments of Murex, it's still an optional package and thus may not be present in some edge cases. This is because it relies on external source packages for the shell to compile.
Examples
Example TOML document taken from Wikipedia
# This is a TOML document.
title = "TOML Example"
[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00 # First class dates
[database]
server = "192.168.1.1"
ports = [ 8001, 8001, 8002 ]
connection_max = 5000
enabled = true
[servers]
# Indentation (tabs and/or spaces) is allowed but not required
[servers.alpha]
ip = "10.0.0.1"
dc = "eqdc10"
[servers.beta]
ip = "10.0.0.2"
dc = "eqdc10"
[clients]
data = [ ["gamma", "delta"], [1, 2] ]
# Line breaks are OK when inside arrays
hosts = [
"alpha",
"omega"
]
Default Associations
- Extension:
toml
- MIME:
application/toml
- MIME:
application/x-toml
- MIME:
text/toml
- MIME:
text/x-toml
Supported Hooks
Marshal()
SupportedReadArray()
Hook supported albeit TOML doesn't support naked arraysReadArrayWithType()
Hook supported albeit TOML doesn't support naked arraysReadIndex()
Works against all properties in TOMLReadNotIndex()
Works against all properties in TOMLUnmarshal()
Supported
See Also
Marshal()
(type): Converts structured memory into a structured file format (eg for stdio)ReadArray()
(type): Read from a data type one array element at a timeReadIndex()
(type): Data type handler for the index,[
, builtinReadMap()
(type): Treat data type as a key/value structure and read its contentsReadNotIndex()
(type): Data type handler for the bang-prefixed index,![
, builtinUnmarshal()
(type): Converts a structured file format into structured memoryWriteArray()
(type): Write a data type, one array element at a time[[
(element): Outputs an element from a nested structure[
(index): Outputs an element from an array, map or tablecast
: Alters the data type of the previous function without altering it's outputformat
: Reformat one data-type into another data-typejson
: JavaScript Object Notation (JSON)jsonl
: JSON Linesopen
: Open a file with a preferred handlerruntime
: Returns runtime information on the internal state of Murexyaml
: YAML Ain't Markup Language (YAML)