Interface BiIntPredicate

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

@FunctionalInterface public interface BiIntPredicate
Tests two arguments of type int as a predicate.
Author:
Owen Feehan
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    test(int first, int second)
    Tests the predicate.
  • Method Details

    • test

      boolean test(int first, int second)
      Tests the predicate.
      Parameters:
      first - first argument.
      second - second argument.
      Returns:
      result of the predicate.