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

Method VisitValues

cpp/src/arrow/compare.cc:641–648  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

639
640 template <typename CompareValues>
641 void VisitValues(CompareValues&& compare_values) {
642 internal::VisitSetBitRunsVoid(left_.buffers[0], left_.offset + left_start_idx_,
643 range_length_, [&](int64_t position, int64_t length) {
644 for (int64_t i = 0; i < length; ++i) {
645 result_ &= compare_values(position + i);
646 }
647 });
648 }
649
650 // Visit and compare runs of non-null values
651 template <typename CompareRuns>

Callers 1

WriteDictMethod · 0.45

Calls 1

VisitSetBitRunsVoidFunction · 0.85

Tested by

no test coverage detected