Package rx.functions
Interface Func2<T1,T2,R>
-
- Type Parameters:
T1
- the first argument typeT2
- the second argument typeR
- 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
call(T1 t1, T2 t2)
-