The type of data contained in a value cell. Currently only fixed-width value types are supported, no strings or nested types.
| 563 | /// Currently only fixed-width value types are supported, |
| 564 | /// no strings or nested types. |
| 565 | const void *type() const { |
| 566 | return GetPointer<const void *>(VT_TYPE); |
| 567 | } |
| 568 | template<typename T> const T *type_as() const; |
| 569 | const org::apache::arrow::flatbuf::Null *type_as_Null() const { |
| 570 | return type_type() == org::apache::arrow::flatbuf::Type_Null ? static_cast<const org::apache::arrow::flatbuf::Null *>(type()) : nullptr; |
no outgoing calls
no test coverage detected