Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SpartanJ/eepp
/ isBinaryDigit
Function
isBinaryDigit
src/eepp/system/parsermatcher.cpp:156–158 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
154
}
155
156
inline bool isBinaryDigit( char c ) {
157
return c ==
'0'
|| c ==
'1'
;
158
}
159
160
inline bool isOctalDigit( char c ) {
161
return c >=
'0'
&& c <=
'7'
;
Callers
2
isValidDigitChar
Function · 0.85
isNumberLiteral
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected