| 623 | }; |
| 624 | |
| 625 | size_t IntegerStringLength(int n) |
| 626 | { |
| 627 | return OutputIntegerAsString(n, CountOutputIterator<char>()).Count(); |
| 628 | } |
| 629 | |
| 630 | /// output n to buffer as string |
| 631 | /// @return end position |
nothing calls this directly
no test coverage detected