| 162 | } |
| 163 | |
| 164 | std::string toLower(std::string str) |
| 165 | { |
| 166 | std::transform( |
| 167 | str.begin(), str.end(), str.begin(), [](unsigned char c) { return std::tolower(c); }); |
| 168 | return str; |
| 169 | } |
| 170 | |
| 171 | std::optional<unsigned long> toUnsigned(const std::string &text) |
| 172 | { |
no outgoing calls
no test coverage detected