MCPcopy Create free account
hub / github.com/bytedance/bolt / characterIsSpace

Function characterIsSpace

bolt/type/TimestampConversion.cpp:144–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142};
143
144inline bool characterIsSpace(char c) {
145 return c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' ||
146 c == '\r';
147}
148
149inline bool characterIsDigit(char c) {
150 return c >= '0' && c <= '9';

Callers 5

skipSpacesFunction · 0.85
tryParseDateStringFunction · 0.85
tryParseTimeStringFunction · 0.85
fromTimestampStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected