• Drops all values from input stream for which predicate returns true

    filter, on the other hand includes values where the predicate is true

    Type Parameters

    • In

    Parameters

    • predicate: ((v: In) => boolean)
        • (v): boolean
        • Parameters

          Returns boolean

    Returns Link<In, In>