• Transforms each value of the iterable into an iterable themselves, one at a time. The resulting Iterable will give you the values of the first iterable, then the second, and so on.

    Type Parameters

    • T

      The type of the items in the source sequence.

    • U

    Parameters

    • fn: ((value) => Iterable<U>)
        • (value): Iterable<U>
        • Parameters

          • value: T

          Returns Iterable<U>

    Returns IterablePipe<T, U>

Generated using TypeDoc