| 16 | |
| 17 | template <typename T> |
| 18 | bool IsEntirely(const std::string& str, T func) { |
| 19 | return std::all_of(str.begin(), str.end(), [=](char ch) { return func(ch); }); |
| 20 | } |
| 21 | |
| 22 | // IsFlexibleCase |
| 23 | // . Returns true if 'str' is: |
no test coverage detected