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

Function format_decimal

include/fmt/format.h:1257–1261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1255
1256template <typename Char, typename UInt>
1257FMT_CONSTEXPR FMT_INLINE auto format_decimal(Char* out, UInt value,
1258 int num_digits) -> Char* {
1259 do_format_decimal(out, value, num_digits);
1260 return out + num_digits;
1261}
1262
1263template <typename Char, typename UInt, typename OutputIt,
1264 FMT_ENABLE_IF(!std::is_pointer<remove_cvref_t<OutputIt>>::value)>

Callers 1

write_significandMethod · 0.85

Calls 4

do_format_decimalFunction · 0.85
to_unsignedFunction · 0.85
is_constant_evaluatedFunction · 0.85
fill_nFunction · 0.85

Tested by

no test coverage detected