parser property

Parser<TomlKey> parser
final

Parser for a dotted TOML key.

Implementation

static final Parser<TomlKey> parser = TomlSimpleKey.parser
    .plusSeparated(tomlWhitespace & char(separator) & tomlWhitespace)
    .map(discardSeparators)
    .map(TomlKey.new);