Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ProgerXP/Notepad2e
/ IsHexDigit
Function
IsHexDigit
scintilla/lexers/LexBasic.cxx:81–83 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
79
}
80
81
static bool IsHexDigit(int c) {
82
return c < 128 && (character_classification[c] & 16);
83
}
84
85
static bool IsBinDigit(int c) {
86
return c < 128 && (character_classification[c] & 32);
Callers
1
Lex
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected