MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / AppendToString

Function AppendToString

native/thirdpart/flatbuffers/flexbuffers.h:359–366  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.45
ToStringMethod · 0.45

Tested by

no test coverage detected