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

Function Next

cpp/src/arrow/record_batch.h:365–369  ·  view source on GitHub ↗

\brief Iterator interface

Source from the content-addressed store, hash-verified

363
364 /// \brief Iterator interface
365 Result<std::shared_ptr<RecordBatch>> Next() {
366 std::shared_ptr<RecordBatch> batch;
367 ARROW_RETURN_NOT_OK(ReadNext(&batch));
368 return batch;
369 }
370
371 /// \brief finalize reader
372 virtual Status Close() { return Status::OK(); }

Callers 14

operator++Method · 0.70
NextMethod · 0.50
NextMethod · 0.50
ToRecordBatchesMethod · 0.50
SkipToDataMethod · 0.50
CheckNextMethod · 0.50
ParseTimeUnitMethod · 0.50
DiffMethod · 0.50
RangeIteratorMethod · 0.50
RangeIteratorClass · 0.50

Calls 1

ReadNextFunction · 0.85

Tested by

no test coverage detected