• Creates a new iterable with all elements that pass the test implemented by the provided function. Similar to the Array.prototype.filter function. See the documentation of the above function for more details.

    Type Parameters

    • T

    Parameters

    • iterable: Iterable<T>

      Iterable on which to call the map function.

    • callbackFn: ((element: T, index: number) => boolean)

      Function that is called to test every element.

        • (element: T, index: number): boolean
        • Parameters

          • element: T
          • index: number

          Returns boolean

    • Optional thisArg: any

      Value to use as this when executing callbackFn.

    Returns Iterable<T>