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

Function IsDigit

test/gtest/gtest.h:2772–2774  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2770 return isalnum(static_cast<unsigned char>(ch)) != 0;
2771}
2772inline bool IsDigit(char ch) {
2773 return isdigit(static_cast<unsigned char>(ch)) != 0;
2774}
2775inline bool IsLower(char ch) {
2776 return islower(static_cast<unsigned char>(ch)) != 0;
2777}

Callers 1

ParseNaturalNumberFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected