MCPcopy Create free account
hub / github.com/LemLib/LemLib / write

Method write

include/fmt/format.h:2092–2096  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2090 FMT_ENABLE_IF(is_integral<T>::value && !std::is_same<T, bool>::value &&
2091 std::is_same<OutputIt, buffer_appender<Char>>::value)>
2092FMT_CONSTEXPR FMT_INLINE auto write(OutputIt out, T value, const format_specs<Char>& specs, locale_ref loc)
2093 -> OutputIt {
2094 if (specs.localized && write_loc(out, value, specs, loc)) return out;
2095 return write_int_noinline(out, make_write_int_arg(value, specs.sign), specs, loc);
2096}
2097
2098// An inlined version of write used in format string compilation.
2099template <typename Char, typename OutputIt, typename T,

Callers

nothing calls this directly

Calls 15

write_locFunction · 0.85
to_unsignedFunction · 0.85
code_point_indexFunction · 0.85
write_escaped_stringFunction · 0.85
compute_widthFunction · 0.85
write_paddedFunction · 0.85
writeFunction · 0.85
is_negativeFunction · 0.85
count_digitsFunction · 0.85
base_iteratorFunction · 0.85
const_checkFunction · 0.85

Tested by

no test coverage detected