ChaiScript
ChaiScript copied to clipboard
Serialize and deserialize objects fast
Hi! I found JSON serialize. But it takes a lot of time. Maybe exist a possibility for serialized ChaiScript object to bytecode and back. for example in c++ I can do:
struct MyStruct{...} my_struct;
std::string( reinterpret_cast<char*>(&my_struct), sizeof my_struct )
Br, Marat