repr 0.1
Reconstructable string representations and more
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages Concepts
simple.cpp

Simple Example

Simple example showcasing type and value serialization.

#include <repr>
#include <variant>
#include <unordered_map>
#include <iostream>
struct CustomType {
char foo;
unsigned bar;
};
int main() {
auto object = CustomType{'f', 42U, true, {{1, 2}, {3, 4}}};
std::cout << "Object: " << repr(object) << '\n';
}