Type Alias OColumnBaseChunk<T>

OColumnBaseChunk<T>: {
    col: OColumnName;
    count: number;
    data: T;
    index: number;
}

Numbers track their own index for sorting purposes

Type Parameters

  • T

Type declaration

  • col: OColumnName

    The column type

  • count: number

    track how many times this chunk is reused

  • data: T

    The raw data in the column

  • index: number

    The index in the column. Will be updated during the writing phase when converted from a map to an array