• Internal

    Creates a new generator that yields results of the mapping function applied to the elements of the input iterable.

    Type Parameters

    • T

      The element type of the input iterable

    • U

      The element type of the output iterable

    Parameters

    • iterable: Iterable<T>

      iterable to transform

    • func: Function<T, U>

      mapping function

    Returns Generator<U>

    A new generator that yields results of the mapping function

Generated using TypeDoc