-
Can you have two dimensional byte arrays in a table? I am aware we can have simple byte arrays in a table with variable length. IE:
Is it possible to add a dimension to "my_data" so that I can have an array of byte arrays (with variable length) ? Something like:
or
Though I know that the 2D syntax examples (above) do not seem to compile. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
No, neither fixed length no variable length multidimensional support is possible in vectors. You need to introduce a vector of tables to achieve this, or, wing it with a vector of strings. If you are aware of this being introduced in Googles flatc, but not in flatcc, please let know. |
Beta Was this translation helpful? Give feedback.
No, neither fixed length no variable length multidimensional support is possible in vectors. You need to introduce a vector of tables to achieve this, or, wing it with a vector of strings.
If you are aware of this being introduced in Googles flatc, but not in flatcc, please let know.