List of usage examples for java.util.function IntPredicate or
default IntPredicate or(IntPredicate other)
From source file:Main.java
public static void main(String[] args) { IntPredicate i = (x) -> x < 0; IntPredicate j = (x) -> x == 0; System.out.println(i.or(j).test(123)); }