elect
03/14/2018, 10:28 AM@JvmName("dotFloat")
methods in `interface`s?diesieben07
03/14/2018, 10:38 AMopen class A {
open fun foo() = "Hello"
}
interface I {
@JvmName("bar")
fun foo(): String
}
diesieben07
03/14/2018, 10:39 AMclass B : A, I
Which name should the method have? It can't have both...spand
03/14/2018, 10:49 AMelect
03/14/2018, 2:25 PMVector3<Float>
and Vector3<Double>