MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / copy

Function copy

extlibs/fmt/include/fmt/ranges.h:60–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58
59template <typename RangeT, typename OutputIterator>
60OutputIterator copy(const RangeT& range, OutputIterator out) {
61 for (auto it = range.begin(), end = range.end(); it != end; ++it)
62 *out++ = *it;
63 return out;
64}
65
66template <typename OutputIterator>
67OutputIterator copy(const char* str, OutputIterator out) {

Callers 15

assignMethod · 0.70
formatMethod · 0.70
format_duration_unitFunction · 0.70
format_localizedMethod · 0.70
on_textMethod · 0.70
copy_strFunction · 0.70
writeMethod · 0.70
formatMethod · 0.70
formatMethod · 0.70
operator()Method · 0.70
formatMethod · 0.70
formatMethod · 0.70

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected