Vinyl
    Preparing search index...

    Function mapIter

    • Maps an iterable object using the given transform. Unlike Array#map, this doesn't create a new Array in memory, the transform is done on iteration.

      Type Parameters

      • T
      • U

      Parameters

      • iterable: Iterable<T>
      • transform: (element: T) => U

        Transforms each element as it's requested.

      Returns IterableIterator<U>