MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / isQuoted

Function isQuoted

src/openms/include/OpenMS/DATASTRUCTURES/StringUtilsSimple.h:242–245  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 2

isQuotedMethod · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected