parser property

Parser<TomlStandardTable> parser
final

Parser for a standard TOML table header.

Implementation

static final Parser<TomlStandardTable> parser = TomlKey.parser
    .trim(tomlWhitespaceChar)
    .skip(before: char(openingDelimiter), after: char(closingDelimiter))
    .map(TomlStandardTable.new);