ts-iterable-functions
    Preparing search index...

    Type Alias IndexedSelector<T, TOut>

    IndexedSelector: (x: T, i: number) => TOut

    Defines a selector that takes a value x:T and number that represents the position of x in whichever sequence it is applied to and transforms that T into a TOut

    Type Parameters

    • T
    • TOut

    Type Declaration

      • (x: T, i: number): TOut
      • Parameters

        • x: T
        • i: number

        Returns TOut

    {@link _map}