Package hu.akarnokd.rxjava3.functions
Interface PlainBiFunction<T1,T2,R>
-
- Type Parameters:
T1- the first argument typeT2- the second argument typeR- the output value type
- All Superinterfaces:
BiFunction<T1,T2,R>
public interface PlainBiFunction<T1,T2,R> extends BiFunction<T1,T2,R>
ABiFunctionwith suppressed exception on itsapply(Object, Object)method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(T1 t1, T2 t2)
-