Searched defs:isDigit (Results 1 – 9 of 9) sorted by relevance
136 static bool isDigit( char val ) in isDigit() function
221 static int isDigit (char ch) in isDigit() function
93 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit() function
249 bool isDigit(dchar c) @safe pure nothrow @nogc function
216 bool isDigit(dchar c) @safe @nogc pure nothrow in isDigit() function
81 static inline bool isDigit(const char C) { return '0' <= C && C <= '9'; } in isDigit() function
315 bool isDigit(dchar c) @safe pure nothrow @nogc function
219 bool isDigit(dchar c) @safe @nogc pure nothrow in isDigit() function
88 inline bool isDigit(char C) { return C >= '0' && C <= '9'; } in isDigit() function