| 36 | namespace arm_compute |
| 37 | { |
| 38 | std::string lower_string(const std::string &val) |
| 39 | { |
| 40 | std::string res = val; |
| 41 | std::transform(res.begin(), res.end(), res.begin(), ::tolower); |
| 42 | return res; |
| 43 | } |
| 44 | |
| 45 | std::string upper_string(const std::string &val) |
| 46 | { |
no test coverage detected