MCPcopy Create free account
hub / github.com/baidu/tera / AppendIntegerToString

Function AppendIntegerToString

src/common/base/string_number.cc:623–625  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

621}
622
623void AppendIntegerToString(int n, std::string* str) {
624 OutputIntegerAsString(n, std::back_inserter(*str));
625}
626void AppendIntegerToString(unsigned int n, std::string* str) {
627 OutputIntegerAsString(n, std::back_inserter(*str));
628}

Callers

nothing calls this directly

Calls 1

OutputIntegerAsStringFunction · 0.85

Tested by

no test coverage detected