| 205 | } |
| 206 | |
| 207 | std::string toLower(const std::string_view input) |
| 208 | { |
| 209 | std::string newStr; |
| 210 | std::transform(input.begin(), input.end(), std::back_inserter(newStr), |
| 211 | [](unsigned char c) { return std::tolower(c); }); |
| 212 | return newStr; |
| 213 | } |
| 214 | |
| 215 | std::string toUpper(const std::string_view input) |
| 216 | { |
no test coverage detected