Interface IntIntIntPredicate


public interface IntIntIntPredicate
Represents an operation that accepts three int arguments and returns a boolean result.
This is a functional interface whose functional method is test(int, int, int).
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    test(int first, int second, int third)
    Evaluates this predicate on the given arguments.
  • Method Details

    • test

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