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

Method VisitValues

cpp/src/arrow/compare.cc:668–675  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

666
667 template <typename CompareValues>
668 void VisitValues(CompareValues&& compare_values) {
669 internal::VisitSetBitRunsVoid(left_.buffers[0], left_.offset + left_start_idx_,
670 range_length_, [&](int64_t position, int64_t length) {
671 for (int64_t i = 0; i < length; ++i) {
672 result_ &= compare_values(position + i);
673 }
674 });
675 }
676
677 // Visit and compare runs of non-null values
678 template <typename CompareRuns>

Callers 1

WriteDictMethod · 0.45

Calls 1

VisitSetBitRunsVoidFunction · 0.85

Tested by

no test coverage detected