List of usage examples for java.util.function DoublePredicate or
default DoublePredicate or(DoublePredicate other)
From source file:Main.java
public static void main(String[] args) { DoublePredicate dp = (d) -> d > 0; DoublePredicate dp1 = (d) -> d == 0; System.out.println(dp.or(dp1).test(0.5)); }