Is it possible to have lazy extension properties w...
# announcements
v
Is it possible to have lazy extension properties with access to
this
? This wont work:
Copy code
val Delegado.number: Int by lazy {
    println("Executed")
    this.id + 1
}
z
You can implement a custom property delegate to get that functionality I think.