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

Function Next

cpp/src/arrow/record_batch.h:370–374  ·  view source on GitHub ↗

\brief Iterator interface

Source from the content-addressed store, hash-verified

368
369 /// \brief Iterator interface
370 Result<std::shared_ptr<RecordBatch>> Next() {
371 std::shared_ptr<RecordBatch> batch;
372 ARROW_RETURN_NOT_OK(ReadNext(&batch));
373 return batch;
374 }
375
376 /// \brief finalize reader
377 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