MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / isStringAlpha

Function isStringAlpha

src/Core/Utils/StringUtils.cpp:36–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34 }
35
36 bool isStringAlpha(const std::string& str)
37 {
38 if (!str.empty())
39 return all_of(str.begin(), str.end(), isalpha);
40 return false;
41 }
42
43 bool isStringAlphaNumeric(const std::string& str)
44 {

Callers

nothing calls this directly

Calls 3

emptyMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected