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

Method is_end

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

\brief Check if the iterator is at the end of the array. This can be used to avoid paying the cost of a call to RunEndEncodedArraySpan::end(). \return true if the iterator is at the end of the array

Source from the content-addressed store, hash-verified

280 ///
281 /// \return true if the iterator is at the end of the array
282 bool is_end(const RunEndEncodedArraySpan& span) const {
283 return logical_pos_ >= span.length();
284 }
285
286 Iterator& operator++() {
287 logical_pos_ = span.run_end(physical_pos_);

Callers

nothing calls this directly

Calls 1

lengthMethod · 0.45

Tested by

no test coverage detected