| 483 | |
| 484 | template <typename OutputIterator> |
| 485 | OutputIterator 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 | |
| 496 | template <typename OutputIterator> |
| 497 | OutputIterator OutputUInt64AsString(uint64_t u64, OutputIterator output) |
no test coverage detected