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

Method Next

cpp/src/arrow/util/iterator.h:176–182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174
175 private:
176 void Next() {
177 if (!value_.ok()) {
178 value_ = IterationTraits<T>::End();
179 return;
180 }
181 value_ = iterator_->Next();
182 }
183
184 Result<T> value_;
185 std::shared_ptr<Iterator> iterator_;

Callers

nothing calls this directly

Calls 3

EndFunction · 0.70
okMethod · 0.45
NextMethod · 0.45

Tested by

no test coverage detected