MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / IsAsciiPunct

Function IsAsciiPunct

rtpose_wrapper/src/gtest/gtest-all.cpp:7987–7989  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7985// current locale.
7986bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
7987bool IsAsciiPunct(char ch) {
7988 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
7989}
7990bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
7991bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
7992bool IsAsciiWordChar(char ch) {

Callers 2

IsValidEscapeFunction · 0.85
AtomMatchesCharFunction · 0.85

Calls 1

IsInSetFunction · 0.85

Tested by

no test coverage detected