• Projects each element of an async-iterable sequence to an async-iterable sequence and merges the resulting async-iterable sequences into one async-iterable sequence.

    Type Parameters

    • TSource

      The type of the elements in the source sequence.

    • TResult

      The type of the elements in the projected inner sequences and the elements in the merged result sequence.

    Parameters

    • selector: FlattenConcurrentSelector<TSource, TResult>

      A transform function to apply to each element.

    • concurrent: number = Infinity
    • Optional thisArg: any

      Option this for binding to the selector.

    Returns OperatorAsyncFunction<TSource, TResult>

    An operator that creates an async-iterable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.

Generated using TypeDoc