MCPcopy Create free account
hub / github.com/chen3feng/toft / AppendIntegerToString

Function AppendIntegerToString

base/string/number.cpp:686–689  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

684}
685
686void AppendIntegerToString(int n, std::string* str)
687{
688 OutputIntegerAsString(n, std::back_inserter(*str));
689}
690void AppendIntegerToString(unsigned int n, std::string* str)
691{
692 OutputIntegerAsString(n, std::back_inserter(*str));

Callers

nothing calls this directly

Calls 1

OutputIntegerAsStringFunction · 0.85

Tested by

no test coverage detected