| 106 | |
| 107 | int64_t logical_array_length() const { return offsets_.back(); } |
| 108 | int32_t num_chunks() const { return static_cast<int32_t>(offsets_.size() - 1); } |
| 109 | |
| 110 | int64_t chunk_length(int64_t chunk_index) const { |
| 111 | return offsets_[chunk_index + 1] - offsets_[chunk_index]; |