Interface ApacheArrowDataLikeExperimental

Structural Apache Arrow data node used without importing peer declarations.

interface ApacheArrowDataLike {
    children: readonly ApacheArrowDataLike[];
    dictionary?: ApacheArrowVectorLike;
    length: number;
    nullBitmap?: Uint8Array;
    offset: number;
    valueOffsets?: Int32Array;
    values?: ArrayBufferView;
}

Properties

children: readonly ApacheArrowDataLike[]
length: number
nullBitmap?: Uint8Array
offset: number
valueOffsets?: Int32Array
values?: ArrayBufferView