MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / CharacterIsDigit

Function CharacterIsDigit

src/include/common/string_utils.h:37–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35 }
36 static bool characterIsNewLine(char c) { return c == '\n' || c == '\r'; }
37 static bool CharacterIsDigit(char c) { return c >= '0' && c <= '9'; }
38
39 static std::string ltrim(const std::string& input) {
40 auto s = input;

Callers 5

parseDoubleDigitMethod · 0.85
tryConvertDateMethod · 0.85
integerCastLoopFunction · 0.85
tryDoubleCastFunction · 0.85
tryDecimalCastFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected