jameskleeh
12/15/2021, 4:31 PMyigit
12/15/2021, 4:58 PMboolean
especially when it is implementing another interface.
e.g. you might have:
interface JavaInterface {
void someBoolean(Boolean b)
}
class KotlinClass : JavaInterface {
override fun someBoolean(b: Boolean)
}
actually "i think" it will genereate 2 methods in this case, not 100% surejameskleeh
12/15/2021, 5:19 PM