<@U0926QHA6>: About `AutoCloseable`, isn’t this wh...
# announcements
c
@apatrida: About
AutoCloseable
, isn’t this what
use
does already?:
Copy code
val ins : InputStream = ...
        ins.use {
            ins.read()
            // ins automatically closed
        }