is there a way around ```BiFunction { user: User, ...
# rx
u
is there a way around
Copy code
BiFunction { user: User, token: String -> Tuple2(user, token) }
in rx with kotlin?
g
Provides extension functions to solve this problem
This is problem of SAM of Kotlin. Probably will be solved in 1.3
u
thx