| 1044 | } |
| 1045 | |
| 1046 | inline ::flatbuffers::Offset<Union> CreateUnionDirect( |
| 1047 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 1048 | org::apache::arrow::flatbuf::UnionMode mode = org::apache::arrow::flatbuf::UnionMode_Sparse, |
| 1049 | const std::vector<int32_t> *typeIds = nullptr) { |
| 1050 | auto typeIds__ = typeIds ? _fbb.CreateVector<int32_t>(*typeIds) : 0; |
| 1051 | return org::apache::arrow::flatbuf::CreateUnion( |
| 1052 | _fbb, |
| 1053 | mode, |
| 1054 | typeIds__); |
| 1055 | } |
| 1056 | |
| 1057 | struct Int FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { |
| 1058 | typedef IntBuilder Builder; |
nothing calls this directly
no test coverage detected