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

Method Next

cpp/src/arrow/util/iterator_test.cc:166–171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164 }
165
166 Result<T> Next() {
167 if (i_ == values_.size()) {
168 return IterationTraits<T>::End();
169 }
170 return std::move(values_[i_++]);
171 }
172
173 private:
174 std::vector<T> values_;

Callers

nothing calls this directly

Calls 2

EndFunction · 0.70
sizeMethod · 0.45

Tested by

no test coverage detected