| 471 | |
| 472 | template <typename OutputIterator> |
| 473 | OutputIterator OutputInt32AsString(int32_t i, OutputIterator output) { |
| 474 | uint32_t u = i; |
| 475 | if (i < 0) { |
| 476 | *output++ = '-'; |
| 477 | u = -i; |
| 478 | } |
| 479 | return OutputUInt32AsString(u, output); |
| 480 | } |
| 481 | |
| 482 | template <typename OutputIterator> |
| 483 | OutputIterator OutputUInt64AsString(uint64_t u64, OutputIterator output) { |
no test coverage detected