skip_whitespace

Skip white spaces

@safe
alias skip_whitespace = skip!(choice!(token!" ", token!"\n", token!"\t"))

Examples

auto i = " \n\t    ";
auto r = skip_whitespace(i);
assert(r.ok);
assert(!r.cont.length);

Meta