ixfx
    Preparing search index...

    Function map

    • Maps an iterable of type V to type X.

      map([1, 2, 3], e => e*e)
      returns [1, 4, 9]

      Type Parameters

      • V
      • X

      Parameters

      • it: Iterable<V>
      • f: (v: V) => X

      Returns Generator<X, void, unknown>