Interface Group<K, T>

    One bucket of a groupBy: its key and the derived sub-Arr of members.

    interface Group<K, T> {
        items: Arr<T>;
        key: K;
    }

    Type Parameters

    • K
    • T
    Index

    Properties

    Properties

    items: Arr<T>
    key: K