Interface BiPredicate<T,U>


public interface BiPredicate<T,U>
Since:
29/11/2016
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    test(T t, U u)
    Evaluates this predicate on the given arguments.
  • Method Details

    • test

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