///////////////////////////////////////////////////////////////////////////
| 346 | |
| 347 | //////////////////////////////////////////////////////////////////////////////// |
| 348 | std::string Lexer::lowerCase(const std::string& input) { |
| 349 | std::string output = input; |
| 350 | std::transform(output.begin(), output.end(), output.begin(), tolower); |
| 351 | return output; |
| 352 | } |
| 353 | |
| 354 | //////////////////////////////////////////////////////////////////////////////// |
| 355 | std::string Lexer::ucFirst(const std::string& input) { |
nothing calls this directly
no outgoing calls
no test coverage detected