Function _select

  • Creates a new sequence populated with the results of calling a provided function on every element in the source sequence

    Alias

    of _map

    Returns

    A new sequence with each element being the result of the selector function.

    Type Parameters

    • T

    • TOut

    Parameters

    • src: Iterable<T>

      source sequence

    • selector: IndexedSelector<T, TOut>

      function to transform each item T in the source sequence into TOut

    Returns Iterable<TOut>

Generated using TypeDoc