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

Function OutputInt32AsString

base/string/number.cpp:485–494  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

483
484template <typename OutputIterator>
485OutputIterator OutputInt32AsString(int32_t i, OutputIterator output)
486{
487 uint32_t u = i;
488 if (i < 0)
489 {
490 *output++ = '-';
491 u = -i;
492 }
493 return OutputUInt32AsString(u, output);
494}
495
496template <typename OutputIterator>
497OutputIterator OutputUInt64AsString(uint64_t u64, OutputIterator output)

Callers 3

OutputIntegerAsStringFunction · 0.85
WriteInt32ToBufferFunction · 0.85
Int32ToStringFunction · 0.85

Calls 1

OutputUInt32AsStringFunction · 0.85

Tested by

no test coverage detected