| 177 | |
| 178 | template <typename Int> |
| 179 | void FormatAllDigitsLeftPadded(Int value, size_t pad, char pad_char, char** cursor) { |
| 180 | auto end = *cursor - pad; |
| 181 | FormatAllDigits(value, cursor); |
| 182 | while (*cursor > end) { |
| 183 | FormatOneChar(pad_char, cursor); |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | template <size_t BUFFER_SIZE> |
| 188 | std::string_view ViewDigitBuffer(const std::array<char, BUFFER_SIZE>& buffer, |
no test coverage detected