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

Method VisitValuesStatus

cpp/src/arrow/util/hashing.h:872–877  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

870 // signature `Status(std::string_view)` or `Status(const std::string_view&)`.
871 template <typename VisitFunc>
872 Status VisitValuesStatus(int32_t start, VisitFunc&& visit) const {
873 for (int32_t i = start; i < size(); ++i) {
874 RETURN_NOT_OK(visit(binary_builder_.GetView(i)));
875 }
876 return Status::OK();
877 }
878
879 // Visit the stored value at a specific index in insertion order.
880 // The visitor function should have the signature `void(std::string_view)`

Callers 1

MergeTableMethod · 0.80

Calls 3

sizeFunction · 0.50
OKFunction · 0.50
GetViewMethod · 0.45

Tested by

no test coverage detected