MCPcopy Create free account
hub / github.com/fmtlib/fmt / format_unsigned

Method format_unsigned

include/fmt/format.h:4187–4190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4185
4186 template <typename UInt>
4187 FMT_CONSTEXPR20 auto format_unsigned(UInt value) -> char* {
4188 auto n = static_cast<detail::uint32_or_64_or_128_t<UInt>>(value);
4189 return detail::do_format_decimal(buffer_, n, buffer_size - 1);
4190 }
4191
4192 template <typename Int>
4193 FMT_CONSTEXPR20 auto format_signed(Int value) -> char* {

Callers

nothing calls this directly

Calls 1

do_format_decimalFunction · 0.85

Tested by

no test coverage detected