jeff
03/15/2020, 10:15 PMObservable.zip(obsA, obsB) { a, b -> a + b }
instead of
Observable.zip(
obsA,
obsB,
BiFunction { a, b -> a + b }
)
?
I know how to write
SomethingCustom.zip(obsA, obsB) { a, b -> a + b }
but I'm asking if there's a best practice or well-known library or somethingFrank Harper
03/16/2020, 12:22 AMjeff
03/16/2020, 1:38 PM