| 67 | * Apache arrow vectors are Read/Write |
| 68 | */ |
| 69 | export interface ReadWriteVector<T = any> extends Vector<T> { |
| 70 | set: (index: number, value: T) => void; |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Vector with standard manipulation functions |
nothing calls this directly
no outgoing calls
no test coverage detected