Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upExample/documentation not available for array of tables in C++ ? #5786
Comments
|
Thank you for pointing that out. since there is only one root_type entry, does it matter if I serialize/deserialize multiple arrays like this: instead of combining like this: |
|
You're likely better off combining, will give you more flexibility. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


I have this schema I want to implement but I am finding it very difficult to find documentation to perform the serialization and deserialization for C++. The existing tutorial and documentation do not seem to describe this scenario which I am assuming is quite common. Can someone point me to any example or documentation that describes this?
tb.fbs:
namespace TB;
table Proj {
idx:int64 = 0;
title:string;
}
table ProjList {
PList:[Proj];
}
root_type ProjList;