`inline` function’s body is being copied to the ca...
# getting-started
m
inline
function’s body is being copied to the call-site at compile-time, along with inline lambdas. E. g.
openSomeStream().use {}
operates like
try (InputStream is = openSomeStream) {}
, with no overhead for creating real JVM methods and/or anonymous classes.