\brief Return one of the underlying read-only buffers
| 129 | } |
| 130 | /// \brief Return one of the underlying read-only buffers |
| 131 | const uint8_t* data(int i) const { |
| 132 | ARROW_DCHECK(i >= 0 && i < kMaxBuffers); |
| 133 | return buffers_[i]; |
| 134 | } |
| 135 | /// \brief Return a mutable version of the offsets buffer |
| 136 | /// |
| 137 | /// Only valid if this is a view into a varbinary type |
no outgoing calls
no test coverage detected