tomlWhitespace top-level property

Parser<String> tomlWhitespace
final

Parser for TOML whitespace.

ws = *wschar

Implementation

final Parser<String> tomlWhitespace =
    tomlWhitespaceChar.starString().orFailure('whitespace expected');