mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 20:15:34 +00:00
* add vector64 specialization for vector<bool> * fix generated code --------- Co-authored-by: Wouter van Oortmerssen <aardappel@gmail.com>
27 lines
401 B
JSON
27 lines
401 B
JSON
{
|
|
"far_vector": [1, 2, 3],
|
|
"a": 1234,
|
|
"far_string": "this is a far string which has a 64-bit offset",
|
|
"big_vector": [5, 6, 7, 8],
|
|
"big_bool_vector": [
|
|
1,
|
|
0,
|
|
1,
|
|
1,
|
|
0,
|
|
0,
|
|
1
|
|
],
|
|
"near_string": "this is a near string which has a 32-bit offset",
|
|
"big_struct_vector": [
|
|
{
|
|
"a": 12,
|
|
"b": 3.456
|
|
},
|
|
{
|
|
"a": 78,
|
|
"b": 9.10
|
|
}
|
|
]
|
|
}
|