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

Method run_end

cpp/src/arrow/util/ree_util.h:495–499  ·  view source on GitHub ↗

\brief Return the logical position immediately after the run. Pre-condition: !is_end()

Source from the content-addressed store, hash-verified

493 ///
494 /// Pre-condition: !is_end()
495 int64_t run_end() const {
496 const auto& left_it = std::get<0>(ree_iterators_);
497 const auto& right_it = std::get<1>(ree_iterators_);
498 return std::min(left_it.run_end(), right_it.run_end());
499 }
500
501 /// \brief returns the logical length of the current run
502 ///

Callers 4

run_endMethod · 0.45
IteratorClass · 0.45
MergedRunsIteratorClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected