ts-iterable-functions
    Preparing search index...

    Interface GroupedIterable<K, V>

    interface GroupedIterable<K, V> {
        key: K;
        "[iterator]"(): Iterator<V, any, any>;
        toJSON(): V[];
    }

    Type Parameters

    • K
    • V

    Hierarchy

    • Iterable<V>
      • GroupedIterable
    Index

    Properties

    Methods

    Properties

    key: K

    Methods

    • Returns Iterator<V, any, any>