Is this how Kotlin translates these to static jvm ...
# android
d
Is this how Kotlin translates these to static jvm methods, it doesn't use the typed
List<T>
?
c
At runtime, the list type is erased and both functions look like
fun Adfactory.makeList(ad: List)
. You can keep them named the same and differentiated within Kotlin source while solving this problem on the JVM side by using
@JvmName
annotations
d
Thanks!