Java Lambda - DoublePredicate or example








DoublePredicate or returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.

Syntax

or has the following syntax.

default DoublePredicate or(DoublePredicate other)

Example

The following example shows how to use or.

import java.util.function.DoublePredicate;
/*  w  w w .  ja  v  a 2 s  .c o m*/
public class Main {

  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));

  }
}

The code above generates the following result.