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

Method VisitValues

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

Source from the content-addressed store, hash-verified

862 // or `void(const std::string_view&)`.
863 template <typename VisitFunc>
864 void VisitValues(int32_t start, VisitFunc&& visit) const {
865 for (int32_t i = start; i < size(); ++i) {
866 visit(binary_builder_.GetView(i));
867 }
868 }
869
870 // Visit the stored value at a specific index in insertion order.
871 // The visitor function should have the signature `void(std::string_view)`

Callers 3

MergeTableMethod · 0.45
TESTFunction · 0.45

Calls 2

sizeFunction · 0.50
GetViewMethod · 0.45

Tested by 1

TESTFunction · 0.36