The type of data contained in a value cell. Currently only fixed-width value types are supported, no strings or nested types
| 109 | /// The type of data contained in a value cell. Currently only fixed-width |
| 110 | /// value types are supported, no strings or nested types |
| 111 | const void *type() const { |
| 112 | return GetPointer<const void *>(VT_TYPE); |
| 113 | } |
| 114 | template<typename T> const T *type_as() const; |
| 115 | const org::apache::arrow::flatbuf::Null *type_as_Null() const { |
| 116 | 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