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

Method Visit

cpp/src/arrow/ipc/writer.cc:434–440  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

432 }
433
434 Status Visit(const BooleanArray& array) {
435 std::shared_ptr<Buffer> data;
436 RETURN_NOT_OK(GetTruncatedBitmap(array.offset(), array.length(), array.values(),
437 options_.memory_pool, &data));
438 out_->body_buffers.emplace_back(std::move(data));
439 return Status::OK();
440 }
441
442 Status Visit(const NullArray& array) { return Status::OK(); }
443

Callers

nothing calls this directly

Calls 15

GetTruncatedBitmapFunction · 0.85
NeedTruncateFunction · 0.85
RoundUpToMultipleOf8Function · 0.85
SliceBufferFunction · 0.85
GetTruncatedBufferFunction · 0.85
emplace_backMethod · 0.80
value_offsetsMethod · 0.80
push_backMethod · 0.80
indicesMethod · 0.80
LogicalValuesMethod · 0.80
PaddedLengthFunction · 0.70
OKFunction · 0.50

Tested by

no test coverage detected