TOML

Usage

use TOML;

or

import TOML;

Submodules

Support for parsing and writing TOML files.

Chapel’s Library for Tom’s Obvious, Minimal Language (TOML).

Note

The planned features and known limitations of this module can be found in Improve Toml issue.

proc parseToml(input: file): unmanaged Toml
proc parseToml(input: channel): unmanaged Toml

Receives a channel to a TOML file as a parameter and outputs a Toml object.

proc parseToml(input: string): unmanaged Toml

Receives a string of TOML format as a parameter and outputs a Toml object

class TomlError: Error
var msg: string
proc init(msg: string)
override proc message()