https://kotlinlang.org logo
e

Eugen Martynov

10/23/2019, 7:44 AM
hey people, I have interface with generic function like
Copy code
interface Merger<T1: Any, T2: Any, R: Any> {
  fun  merge(t1:T1, t2:T2): R
}