Registry / serialization / copypp

copypp

JSON →
library0.3.0vcpkgunverified

Support field copy in different C++ data types.

vcpkg install copypp
INSTALL
IMPORT
SIG · COPYPP
C
copypp
serializationcppv0.3.0
harness data pending
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.

Upgrade
Version history
0.3.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources

No resource links recorded.

copypp — pip install copypp · libregistry