Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
copypp/copypp.hpp
✓ #include <copypp/copypp.hpp>
Copy fields between different struct types
#include <copypp/copypp.hpp>
#include <iostream>
struct Source { int a; double b; };
struct Dest { int x; double y; };
int main() {
Source src{1, 2.5};
Dest dst;
copypp::copy(src, dst);
std::cout << dst.x << ", " << dst.y << std::endl;
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.