Interface BooleanBiPredicate

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@Generated(generator="eu.bandm.tools.expander", version="1.3", timestamp="2025-08-10T18:01:21") @FunctionalInterface public interface BooleanBiPredicate
Represents a predicate (boolean-valued function) of two long-valued arguments. This is the boolean-consuming primitive type specialization of BiPredicate.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    test(boolean left, boolean right)
    Evaluates this predicate on the given arguments.
  • Method Details

    • test

      boolean test(boolean left, boolean right)
      Evaluates this predicate on the given arguments.
      Parameters:
      left - the first input argument
      right - the second input argument
      Returns:
      true if the input arguments match the predicate, otherwise false