MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / copy

Function copy

extern/nfd/nfd_portal.cpp:84–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82
83template <typename T>
84T* copy(const T* begin, const T* end, T* out) {
85 for (; begin != end; ++begin) {
86 *out++ = *begin;
87 }
88 return out;
89}
90
91template <typename T, typename Callback>
92T* transform(const T* begin, const T* end, T* out, Callback callback) {

Calls

no outgoing calls

Tested by

no test coverage detected