• Returns the elements in an async-enumerable sequence with the minimum key value.

    Type Parameters

    • TSource

      The type of the elements in the source sequence.

    • TKey

      The type of the key computed for each element in the source sequence.

    Parameters

    • source: AsyncIterable<TSource>

      An async-iterable sequence to get the minimum elements for.

    • Optional options: ExtremaOptions<TSource, TKey>

      The options which include an optional comparer and abort signal.

    Returns Promise<TSource[]>

    A promise containing a list of zero or more elements that have a minimum key value.

Generated using TypeDoc