| 1291 | // Formats an unsigned integer in the power of two base (binary, octal, hex). |
| 1292 | template <typename Char, typename UInt> |
| 1293 | FMT_CONSTEXPR auto format_base2e(int base_bits, Char* out, UInt value, |
| 1294 | int num_digits, bool upper = false) -> Char* { |
| 1295 | do_format_base2e(base_bits, out, value, num_digits, upper); |
| 1296 | return out + num_digits; |
| 1297 | } |
| 1298 | |
| 1299 | template <typename Char, typename OutputIt, typename UInt, |
| 1300 | FMT_ENABLE_IF(is_back_insert_iterator<OutputIt>::value)> |
no test coverage detected