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

Function copy

include/fmt/base.h:1897–1900  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1895 FMT_ENABLE_IF(is_back_insert_iterator<OutputIt>() &&
1896 has_append<OutputIt, InputIt>())>
1897FMT_CONSTEXPR auto copy(InputIt begin, InputIt end, OutputIt out) -> OutputIt {
1898 get_container(out).append(begin, end);
1899 return out;
1900}
1901
1902template <typename T, typename InputIt, typename OutputIt,
1903 FMT_ENABLE_IF(is_back_insert_iterator<OutputIt>() &&

Callers

nothing calls this directly

Calls 2

get_containerFunction · 0.85
endMethod · 0.45

Tested by

no test coverage detected