MCPcopy Create free account
hub / github.com/apache/trafficserver / values

Method values

src/tscpp/api/Headers.cc:239–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

237}
238
239std::string
240HeaderField::values(const char *join)
241{
242 std::string ret;
243 for (header_field_value_iterator it = begin(); it != end(); ++it) {
244 if (ret.size()) {
245 ret.append(join);
246 }
247 ret.append(*it);
248 }
249 return ret;
250}
251
252std::string
253HeaderField::values(const std::string &join)

Callers 4

runMethod · 0.80
wireStrMethod · 0.80

Calls 6

valuesFunction · 0.85
stringClass · 0.85
sizeMethod · 0.45
appendMethod · 0.45
c_strMethod · 0.45
assignMethod · 0.45

Tested by

no test coverage detected