nono i wasnt being clear... here's specifically wh...
# datascience
k
nono i wasnt being clear... here's specifically what im trying to do:
Copy code
interface A<T> {
    fun go(t:T)
}
class B:A<Double> {
    override fun go(t:Double){} // java.lang.Double
    fun go(t:Double){} // i want double here
}