public interface

BiPredicate

io.reactivex.functions.BiPredicate<T1, T2>

Class Overview

A functional interface (callback) that returns true or false for the given input values.

Summary

Public Methods
abstract boolean test(T1 t1, T2 t2)
Test the given input values and return a boolean.

Public Methods

public abstract boolean test (T1 t1, T2 t2)

Test the given input values and return a boolean.

Parameters
t1 the first value
t2 the second value
Returns
  • the boolean result
Throws
Exception on error