| 339 | }; |
| 340 | |
| 341 | inline ::flatbuffers::Offset<PrimitiveArray> CreatePrimitiveArray( |
| 342 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 343 | arrow::ipc::feather::fbs::Type type = arrow::ipc::feather::fbs::Type_BOOL, |
| 344 | arrow::ipc::feather::fbs::Encoding encoding = arrow::ipc::feather::fbs::Encoding_PLAIN, |
| 345 | int64_t offset = 0, |
| 346 | int64_t length = 0, |
| 347 | int64_t null_count = 0, |
| 348 | int64_t total_bytes = 0) { |
| 349 | PrimitiveArrayBuilder builder_(_fbb); |
| 350 | builder_.add_total_bytes(total_bytes); |
| 351 | builder_.add_null_count(null_count); |
| 352 | builder_.add_length(length); |
| 353 | builder_.add_offset(offset); |
| 354 | builder_.add_encoding(encoding); |
| 355 | builder_.add_type(type); |
| 356 | return builder_.Finish(); |
| 357 | } |
| 358 | |
| 359 | struct CategoryMetadata FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { |
| 360 | typedef CategoryMetadataBuilder Builder; |
no test coverage detected