Hi all, I'm struggling to use the zip function. I...
# rx
t
Hi all, I'm struggling to use the zip function. I have the following (simplified)
Copy code
val 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