open-vector-tile - v1.8.0
    Preparing search index...

    Type Alias OColumnBaseChunk<T>

    Numbers track their own index for sorting purposes

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

    Type Parameters

    • T
    Index

    Properties

    Properties

    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