Scanning on Demand 16

This commit is contained in:
nazrin 2025-06-03 22:57:02 +00:00
parent aba643a88e
commit 8fb449825d
6 changed files with 209 additions and 32 deletions

View file

@ -7,3 +7,7 @@ template defaultCtor(){
}
}
import std.ascii : isAlpha, isAlphaNum;
bool isAlpha_(dchar c) => c.isAlpha || c == '_';
bool isAlphaNum_(dchar c) => c.isAlphaNum || c == '_';