public interface

BiFunction

io.reactivex.functions.BiFunction<T1, T2, R>
Known Indirect Subclasses

Class Overview

A functional interface (callback) that computes a value based on multiple input values.

Summary

Public Methods
abstract R apply(T1 t1, T2 t2)
Calculate a value based on the input values.

Public Methods

public abstract R apply (T1 t1, T2 t2)

Calculate a value based on the input values.

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