| 240 | } |
| 241 | |
| 242 | static inline bool isQuoted(const String & this_s, char q) |
| 243 | { |
| 244 | return (this_s.size() < 2) || (this_s[0] != q) || (this_s[this_s.size() - 1] != q); |
| 245 | } |
| 246 | |
| 247 | static inline String& quote(String & this_s, char q, String::QuotingMethod method) |
| 248 | { |
no test coverage detected