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

Function toString

include/tscore/Extendible.h:768–775  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

766
767template <typename T>
768std::string
769toString(T const &t)
770{
771 std::stringstream ss;
772 ss.width(0);
773 serialize(ss, t);
774 return ss.str();
775}
776} // namespace ext

Callers 2

connectUpMethod · 0.50
test_Extendible.ccFile · 0.50

Calls 3

serializeFunction · 0.85
widthMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected