toby
07/23/2018, 12:37 PMval test1 = 1
val test2 = 5
val test3 = "a"
Observable.zip(
Observable.just(test1),
Observable.just(test2),
Observable.just(test3),
{a:Int, b : Int, c:String -> Triple(a,b,c)}
)
The compiler cannot infer the return type of the zipper function and I am unsure how I should specify it