MCPcopy Create free account
hub / github.com/TombEngine/TombEngine / AppendToString

Function AppendToString

Libs/flatbuffers/flexbuffers.h:360–367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

358
359template<typename T>
360void AppendToString(std::string &s, T &&v, bool keys_quoted) {
361 s += "[ ";
362 for (size_t i = 0; i < v.size(); i++) {
363 if (i) s += ", ";
364 v[i].ToString(true, keys_quoted, s);
365 }
366 s += " ]";
367}
368
369class Reference {
370 public:

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.45
ToStringMethod · 0.45

Tested by

no test coverage detected