MCPcopy Create free account
hub / github.com/boostorg/filesystem / is_alnum

Function is_alnum

src/path.cpp:103–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101using boost::filesystem::detail::questionmark;
102
103inline bool is_alnum(wchar_t c)
104{
105 return boost::filesystem::detail::is_letter(c) || (c >= L'0' && c <= L'9');
106}
107
108inline bool is_device_name_char(wchar_t c)
109{

Callers 1

is_device_name_charFunction · 0.85

Calls 1

is_letterFunction · 0.85

Tested by

no test coverage detected