rook
07/01/2019, 1:13 PMBiFunction
, but I can’t figure out what specifically I’ve done incorrectly
val one = Observable.fromIterable(listOf(1,2,3))
val two = Observable.fromIterable(listOf(4,5,6))
Observable.combineLatest(one, two, BiFunction{ p1:Int, p2:Int -> p1+p2})
gsala
07/01/2019, 1:15 PMzip
and combineLatest
much easier:
https://github.com/ReactiveX/RxKotlinrook
07/01/2019, 1:16 PMgsala
07/01/2019, 1:19 PMrook
07/01/2019, 1:20 PMBiFunction
gsala
07/01/2019, 1:20 PMio.reactivex.functions
rook
07/01/2019, 1:21 PMalexsullivan114
07/01/2019, 1:36 PMrusshwolf
07/01/2019, 3:10 PMrusshwolf
07/01/2019, 3:10 PM