Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bytedance/bolt
/ characterIsDigit
Function
characterIsDigit
bolt/type/TimestampConversion.cpp:149–151 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
147
return c ==
' '
|| c ==
'\t'
|| c ==
'\n'
|| c ==
'\v'
|| c ==
'\f'
||
148
c ==
'\r'
;
149
}
150
151
inline bool characterIsDigit(char c) {
152
return c >=
'0'
&& c <=
'9'
;
153
}
154
Callers
4
parseDoubleDigit
Function · 0.70
tryParseDateString
Function · 0.70
tryParseTimeString
Function · 0.70
tryParseUTCOffsetString
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected