I have a ChunkedArray of type `arrow::list` and I want to take a value for a particular row in this column and return it as Array. >From example, I see one way of doing it -- get raw pointer using `values` method and also take `value_offset` to get offset. This way I will get pointers to the whole range. If this is the only way, can I somehow create a zero-copy arrow::Array from this range?
-- Best regards, Kirill Lykov