MCPcopy Create free account
hub / github.com/apache/arrow / IsDigit

Function IsDigit

cpp/src/arrow/util/decimal.cc:804–804  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

802inline bool IsDot(char c) { return c == '.'; }
803
804inline bool IsDigit(char c) { return c >= '0' && c <= '9'; }
805
806inline bool StartsExponent(char c) { return c == 'e' || c == 'E'; }
807

Callers 1

ParseDigitsRunFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected