token_ws

Undocumented in source.
template token_ws(string t)
version(legacy)
token_ws
(
R
)
(
in auto ref R i
)

Members

Functions

token_ws
auto token_ws(R i)
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

const(char)[] i = " \n\t    ";
auto r = skip!whitespace(i);
assert(r.ok);
assert(!r.cont.length);

Meta