Documentation
    Preparing search index...

    Interface LinqGrouping<TKey, TValue>

    Represents basic traits of a group after grouping the input sequence.

    interface LinqGrouping<TKey, TValue> {
        key: TKey;
        values: LinqWrapper<TValue>;
    }

    Type Parameters

    • TKey

      type of the group key.

    • TValue

      type of the element from the input sequence.

    Index

    Properties

    Properties

    key: TKey

    The grouping key.

    The abstracted representation of value sequence.