let is becoming a little bit less ugly with bound ...
# language-proposals
k
let is becoming a little bit less ugly with bound references:
Copy code
class Foo {
   fun bar(baz: Baz) {}
}

nullableBaz?.let(Foo()::bar)