| 95 | } |
| 96 | |
| 97 | bool isBool(const string& val) { |
| 98 | string str = ba::trim_copy(val); |
| 99 | return (val == "true" || val == "True" || val == "false" || val == "False"); |
| 100 | } |
| 101 | |
| 102 | bool dunder(const string& s) { |
| 103 | return ba::starts_with(s, "__") && ba::ends_with(s, "__"); |
no outgoing calls
no test coverage detected