namespace org.example.person;
table Person {
name:string;
age:int;
possession:list;
children:map<string,int>;
}
root_type Person
--
You received this message because you are subscribed to the Google Groups "FlatBuffers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flatbuffers...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
If someone needs to load into a map, (to modify after load, for example) it would be cool if the nodes were sorted in an insertion order that avoided rebalancing. E.g. breadth first?