Interface IntBiPredicate<T>

  • Type Parameters:
    T - the type of the first argument of the function
    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 IntBiPredicate<T>
    Similar to a BiPredicate but one of the arguments is a primitive integer.
    • Method Detail

      • test

        boolean test​(T value,
                     int integer)