MCPcopy Create free account
hub / github.com/apache/arrow / mutable_fixed_length_rows

Function mutable_fixed_length_rows

cpp/src/arrow/compute/row/row_internal.h:219–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

217 return data(1) + static_cast<int64_t>(row_id) * metadata_.fixed_length;
218 }
219 uint8_t* mutable_fixed_length_rows(uint32_t row_id) {
220 ARROW_DCHECK(metadata_.is_fixed_length);
221 return mutable_data(1) + static_cast<int64_t>(row_id) * metadata_.fixed_length;
222 }
223
224 const offset_type* offsets() const {
225 ARROW_DCHECK(!metadata_.is_fixed_length);

Callers

nothing calls this directly

Calls 1

mutable_dataFunction · 0.70

Tested by

no test coverage detected