Guys, are there any plans to support accessing pro...
# announcements
m
Guys, are there any plans to support accessing property delegates? A use case may be something like this:
Copy code
val stream by lazy { openStream() }
...
if (stream::delegate.initialized) {
    stream.close()
}