We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Welcome to the FancyPars-lite wiki!
An example looks like this :
ASTNode { Sequence { Bool[] bools } Bool { ? "true" : bool isTrue / "false" } }
This would match the string "false true false true true false"
"false true false true true false"
auto seq = parse(lex("false true false true false")); writeln(seq.bools)
would have the output
[Bool(false),Bool(true) ... ]