| 260 | } |
| 261 | |
| 262 | bool StringUtil::isAlphanumeric(const std::string& str) { |
| 263 | for (const auto& c : str) { |
| 264 | if (!isAlphanumeric(c)) { |
| 265 | return false; |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | return true; |
| 270 | } |
| 271 | |
| 272 | bool StringUtil::isAlphanumeric(char chr) { |
| 273 | bool is_alphanum = |
nothing calls this directly
no outgoing calls
no test coverage detected