RAPIDS
    Preparing search index...

    Interface GroupByMultipleProps<T, R, IndexKey>

    interface GroupByMultipleProps<
        T extends TypeMap,
        R extends keyof T,
        IndexKey extends string,
    > {
        by: R[];
        column_order?: boolean[];
        include_nulls?: boolean;
        index_key: IndexKey;
        keys_are_sorted?: boolean;
        null_precedence?: NullOrder[];
    }

    Type Parameters

    • T extends TypeMap
    • R extends keyof T
    • IndexKey extends string

    Hierarchy (View Summary)

    Index

    Properties

    by: R[]
    column_order?: boolean[]
    include_nulls?: boolean
    index_key: IndexKey
    keys_are_sorted?: boolean
    null_precedence?: NullOrder[]