Not really for this channel, but basically, it jus...
# language-proposals
c
Not really for this channel, but basically, it just gives you some flexibility so your extension function can apply to nullable references as well:
Copy code
class A
fun A?.foo() {}
fun f() {
    val a: A? = null
    a.foo()
}