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

Function mutable_null_masks

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

Source from the content-addressed store, hash-verified

205 return data(0) + static_cast<int64_t>(row_id) * metadata_.null_masks_bytes_per_row;
206 }
207 uint8_t* mutable_null_masks(uint32_t row_id) {
208 return mutable_data(0) +
209 static_cast<int64_t>(row_id) * metadata_.null_masks_bytes_per_row;
210 }
211 bool is_null(uint32_t row_id, uint32_t col_pos) const {
212 return bit_util::GetBit(null_masks(row_id), col_pos);
213 }

Callers

nothing calls this directly

Calls 1

mutable_dataFunction · 0.70

Tested by

no test coverage detected