Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/recordbatch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ export interface RecordBatch<T extends TypeMap = any> {
[Symbol.isConcatSpreadable]: true;
}

/** @ignore */
/**
* A RecordBatch is a collection of equal-length columns conforming to a
* particular {@link Schema}. A {@link Table} is composed of one or more
* RecordBatches.
*/
export class RecordBatch<T extends TypeMap = any> {

/**
Expand Down
Loading