mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-03 10:22:56 +00:00
* 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.
673 B
673 B
@lancedb/lancedb • Docs
@lancedb/lancedb / RecordBatchIterator
Class: RecordBatchIterator
Implements
AsyncIterator<RecordBatch>
Constructors
new RecordBatchIterator()
new RecordBatchIterator(promise?): RecordBatchIterator
Parameters
- promise?:
Promise<RecordBatchIterator>
Returns
Methods
next()
next(): Promise<IteratorResult<RecordBatch<any>, any>>
Returns
Promise<IteratorResult<RecordBatch<any>, any>>
Implementation of
AsyncIterator.next