Package rx.functions

Interface Func2<T1,T2,R>

Type Parameters:
T1 - the first argument type
T2 - the second argument type
R - the result type
All Superinterfaces:
Function
All Known Implementing Classes:
InternalObservableUtils.CollectorCaller, InternalObservableUtils.ObjectEqualsFunc2, InternalObservableUtils.PlusOneFunc2, InternalObservableUtils.PlusOneLongFunc2, OperatorDistinctUntilChanged

public interface Func2<T1,T2,R> extends Function
Represents a function with two arguments.
  • Method Summary

    Modifier and Type
    Method
    Description
    call(T1 t1, T2 t2)
     
  • Method Details

    • call

      R call(T1 t1, T2 t2)