• An iterable filter that invokes the provided handler if there was an error while iterating. Any error while iterating assumes no more results and the iteration will be complete after the error. The handler can decide if it wants to rethrow the error or not.

    Returns

    Type Parameters

    • T

    Parameters

    • handler: ((ex: any, index: number) => void)
        • (ex: any, index: number): void
        • Parameters

          • ex: any
          • index: number

          Returns void

    Returns IterableFilter<T>

Generated using TypeDoc