MCPcopy Create free account
hub / github.com/creatale/node-dv / cv_isalnum

Function cv_isalnum

deps/opencv/modules/core/src/persistence.cpp:78–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76#define cv_isprint_or_tab(c) ((uchar)(c) >= (uchar)' ' || (c) == '\t')
77
78static inline bool cv_isalnum(char c)
79{
80 return ('0' <= c && c <= '9') || ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z');
81}
82
83static inline bool cv_isalpha(char c)
84{

Callers 9

getDefaultObjectNameMethod · 0.85
icvYMLParseValueFunction · 0.85
icvYMLParseFunction · 0.85
icvYMLWriteFunction · 0.85
icvYMLWriteStringFunction · 0.85
icvXMLParseValueFunction · 0.85
icvXMLParseTagFunction · 0.85
icvXMLWriteTagFunction · 0.85
cvRegisterTypeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected