Describe the enhancement requested
Just like we have PrimitiveArray::raw_values, we could also have something that returns a arrow::util::span for easier consumption:
const util::span<value_type> values_span() const {
return util::span(raw_values(), static_cast<size_t>(length_));
}
Component(s)
C++