| 1034 | }; |
| 1035 | |
| 1036 | inline ::flatbuffers::Offset<Union> CreateUnion( |
| 1037 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 1038 | org::apache::arrow::flatbuf::UnionMode mode = org::apache::arrow::flatbuf::UnionMode_Sparse, |
| 1039 | ::flatbuffers::Offset<::flatbuffers::Vector<int32_t>> typeIds = 0) { |
| 1040 | UnionBuilder builder_(_fbb); |
| 1041 | builder_.add_typeIds(typeIds); |
| 1042 | builder_.add_mode(mode); |
| 1043 | return builder_.Finish(); |
| 1044 | } |
| 1045 | |
| 1046 | inline ::flatbuffers::Offset<Union> CreateUnionDirect( |
| 1047 | ::flatbuffers::FlatBufferBuilder &_fbb, |
no test coverage detected