isSymbolASCII

Undocumented in source. Be warned that the author may not have intended to support it.
pure nothrow @safe @nogc
bool
isSymbolASCII
(
in string rest
,
ptrdiff_t off
,
size_t end
)

Examples

assert(isSymbolASCII("alpha", 0, 5));
assert(isSymbolASCII(" alpha ", 1, 6));
assert(!isSymbolASCII("driver", 0, 5));
assert(!isSymbolASCII("a_word", 0, 1));
assert(!isSymbolASCII("first_a_word", 6, 7));

Meta