Registry / serialization / rsm-binary-io

rsm-binary-io

JSON →
library2.0.6vcpkgunverified

A binary i/o library for C++, without the agonizing pain

vcpkg install rsm-binary-io
INSTALL
IMPORT
SIG · RSM-BINARY-IO
R
rsm-binary-io
serializationcppv2.0.6
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.

rsm/binary_io.hpp
#include <rsm/binary_io.hpp>

Serialize and deserialize an integer using binary archives

#include <rsm/binary_io.hpp> #include <iostream> #include <sstream> int main() { std::stringstream ss; rsm::binary_oarchive oa(ss); int x = 42; oa << x; rsm::binary_iarchive ia(ss); int y; ia >> y; std::cout << "Read: " << y << std::endl; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.0.6latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources

No resource links recorded.

rsm-binary-io — pip install rsm-binary-io · libregistry