Oleg Shuliak
01/23/2025, 9:04 PMinterface Interface {
fun Interface.protectedMethod()
}
class Implementation : Interface {
override fun Interface.protectedMethod() = Unit
init {
protectedMethod()
}
}
but it doesn’t look fully right. Any other ideas?asdf asdf
01/23/2025, 10:22 PMDaniel Pitts
01/24/2025, 9:21 PM