tomlWhitespaceChar top-level property

Parser<String> tomlWhitespaceChar
final

Parser for a single TOML whitespace character. wschar = %x20 ; Space wschar =/ %x09 ; Horizontal tab

Implementation

final Parser<String> tomlWhitespaceChar = ChoiceParser([char(' '), char('\t')])
    .orFailure('single whitespace character expected');