Files
lancedb/docs/src/js/classes/RecordBatchIterator.md
Will Jones db125013fc docs: better formatting for Node API docs (#1892)
* Sets `"useCodeBlocks": true`
* Adds a post-processing script `nodejs/typedoc_post_process.js` that
puts the parameter description on the same line as the parameter name,
like it is in our Python docs. This makes the text hierarchy clearer in
those sections and also makes the sections shorter.
2024-12-09 17:04:09 -08:00

673 B

@lancedb/lancedbDocs


@lancedb/lancedb / RecordBatchIterator

Class: RecordBatchIterator

Implements

  • AsyncIterator<RecordBatch>

Constructors

new RecordBatchIterator()

new RecordBatchIterator(promise?): RecordBatchIterator

Parameters

  • promise?: Promise<RecordBatchIterator>

Returns

RecordBatchIterator

Methods

next()

next(): Promise<IteratorResult<RecordBatch<any>, any>>

Returns

Promise<IteratorResult<RecordBatch<any>, any>>

Implementation of

AsyncIterator.next