MCPcopy Create free account
hub / github.com/apache/singa / IsXDigit

Function IsXDigit

test/gtest/gtest.h:2784–2786  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2782 return isupper(static_cast<unsigned char>(ch)) != 0;
2783}
2784inline bool IsXDigit(char ch) {
2785 return isxdigit(static_cast<unsigned char>(ch)) != 0;
2786}
2787inline bool IsXDigit(wchar_t ch) {
2788 const unsigned char low_byte = static_cast<unsigned char>(ch);
2789 return ch == low_byte && isxdigit(low_byte) != 0;

Callers 1

PrintCharsAsStringToFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected