skipLongString

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

Examples

Test skipping over long strings

import mir.deser.text.tokenizer : tokenizeString;

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

Meta