skipList

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

Examples

Test skipping over lists

import mir.deser.text.tokenizer : tokenizeString;

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

test("\"foo\", \"bar\", \"baz\"],", ',');
test("\"foobar\"]", 0);

Meta