skipBlob

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

Examples

Test skipping over blobs

import mir.deser.text.tokenizer : tokenizeString;

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

test("}}", 0);
test("oogboog}},{{}}", ',');
test("'''not encoded'''}}\n", '\n');

Meta