| 333 | std::variant<ArraySpan, std::shared_ptr<ArrayData>> value; |
| 334 | |
| 335 | int64_t length() const { |
| 336 | if (this->is_array_span()) { |
| 337 | return this->array_span()->length; |
| 338 | } else { |
| 339 | return this->array_data()->length; |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | const DataType* type() const { |
| 344 | if (this->is_array_span()) { |
nothing calls this directly
no test coverage detected