| 585 | }; |
| 586 | |
| 587 | size_t IntegerStringLength(int n) { |
| 588 | return OutputIntegerAsString(n, CountOutputIterator<char>()).Count(); |
| 589 | } |
| 590 | |
| 591 | /// output n to buffer as string |
| 592 | /// @return end position |
nothing calls this directly
no test coverage detected