Example usage for java.util.function BiPredicate interface-usage

List of usage examples for java.util.function BiPredicate interface-usage

Introduction

In this page you can find the example usage for java.util.function BiPredicate interface-usage.

Usage

From source file at.gridtec.lambda4j.predicate.bi.BiPredicate2.java

/**
 * Represents an predicate (boolean-valued function) of two input arguments.
 * <p>
 * This is a {@link FunctionalInterface} whose functional method is {@link #test(Object, Object)}.
 *
 * @param <T> The type of the first argument to the predicate

From source file at.gridtec.lambda4j.predicate.bi.ThrowableBiPredicate.java

/**
 * Represents an predicate (boolean-valued function) of two input arguments which is able to throw any {@link
 * Throwable}.
 * <p>
 * This is a {@link FunctionalInterface} whose functional method is {@link #testThrows(Object, Object)}.
 *