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

Function mutable_data

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

Source from the content-addressed store, hash-verified

262 return NULLPTR;
263 }
264 uint8_t* mutable_data(int i) {
265 ARROW_DCHECK(i >= 0 && i < kMaxBuffers);
266 if (ARROW_PREDICT_TRUE(buffers_[i])) {
267 return buffers_[i]->mutable_data();
268 }
269 return NULLPTR;
270 }
271
272 /// \brief Resize the fixed length buffers to store `num_extra_rows` more rows. The
273 /// fixed length buffers are buffers_[0] for null masks, buffers_[1] for row data if the

Callers 5

mutable_null_masksFunction · 0.70
mutable_offsetsFunction · 0.70
mutable_var_length_rowsFunction · 0.70

Calls 1

mutable_dataMethod · 0.45

Tested by

no test coverage detected