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

Function write_bytes

include/fmt/format.h:1698–1703  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1696
1697template <align::type align = align::left, typename Char, typename OutputIt>
1698FMT_CONSTEXPR auto write_bytes(OutputIt out, string_view bytes, const format_specs<Char>& specs) -> OutputIt {
1699 return write_padded<align>(out, specs, bytes.size(), [bytes](reserve_iterator<OutputIt> it) {
1700 const char* data = bytes.data();
1701 return copy_str<Char>(data, data + bytes.size(), it);
1702 });
1703}
1704
1705template <typename Char, typename OutputIt, typename UIntPtr>
1706auto write_ptr(OutputIt out, UIntPtr value, const format_specs<Char>* specs) -> OutputIt {

Callers 2

writeMethod · 0.85
formatMethod · 0.85

Calls 2

sizeMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected