Function filter_

  • Type Parameters

    • A

    • E

    • B

    Parameters

    • self: Source<A, E>
    • pred: ((a: A) => a is B)
        • (a: A): a is B
        • Parameters

          • a: A

          Returns a is B

    Returns Source<B, E>

  • Type Parameters

    • A

    • E

    Parameters

    • self: Source<A, E>
    • pred: ((a: A) => boolean)
        • (a: A): boolean
        • Parameters

          • a: A

          Returns boolean

    Returns Source<A, E>

Generated using TypeDoc