| 10 | namespace amrex { |
| 11 | |
| 12 | std::string toLower (std::string s) |
| 13 | { |
| 14 | std::ranges::transform(s, s.begin(), |
| 15 | [](unsigned char c) { return std::tolower(c); }); |
| 16 | return s; |
| 17 | } |
| 18 | |
| 19 | std::string toUpper (std::string s) |
| 20 | { |
no test coverage detected