MCPcopy Create free account
hub / github.com/aurora-opensource/au / stream_to_string

Function stream_to_string

tutorial/utils.hh:23–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21
22template <typename T>
23std::string stream_to_string(const T &x) {
24 std::stringstream ss;
25 ss << x;
26 return ss.str();
27}
28
29} // namespace au

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected