MCPcopy Create free account
hub / github.com/apache/arrow / operator++

Method operator++

cpp/src/arrow/util/range.h:116–120  ·  view source on GitHub ↗

post-increment

Source from the content-addressed store, hash-verified

114
115 // post-increment
116 RangeIter operator++(int) {
117 auto copy = RangeIter(*this);
118 ++index_;
119 return copy;
120 }
121
122 bool operator==(const typename LazyRange<Generator>::RangeIter& other) const {
123 return this->index_ == other.index_ && this->range_ == other.range_;

Callers

nothing calls this directly

Calls 1

RangeIterClass · 0.85

Tested by

no test coverage detected