Registry / serialization / yas
library7.1.0vcpkgunverified

Yet Another Serialization is a header only serialization library

vcpkg install yas
INSTALL
IMPORT
SIG · YAS
Y
yas
serializationcppv7.1.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.

yas/yas.hpp
#include <yas/yas.hpp>

Serialize and deserialize a struct

#include <yas/yas.hpp> #include <iostream> struct Point { int x, y; }; int main() { Point p{1, 2}; std::vector<char> buf = yas::save(p); Point q = yas::load<Point>(buf); std::cout << q.x << ", " << q.y << std::endl; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
7.1.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
26 hits · last 30 days
node
22
OpenAI (training)
1
Resources

No resource links recorded.

yas — pip install yas · libregistry