skipSexp

Undocumented in source. Be warned that the author may not have intended to support it.
@safe @nogc pure
char
skipSexp

Examples

Test skipping over S-expressions

import mir.deser.text.tokenizer : tokenizeString;

void test(string ts, char result) {
    auto t = tokenizeString(ts);
    assert(t.skipSexp() == result);
}

test("1231 + 1123),", ',');
test("0xF00DBAD)", 0);

Meta