MCPcopy 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
151inline bool characterIsDigit(char c) {
152 return c >= '0' && c <= '9';
153}
154

Callers 4

parseDoubleDigitFunction · 0.70
tryParseDateStringFunction · 0.70
tryParseTimeStringFunction · 0.70
tryParseUTCOffsetStringFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected