Looking at the bound callable references proposal:...
# language-proposals
d
Looking at the bound callable references proposal: I noticed that re-introducing type inference for an empty LHS isn't listed as a "possible future advancement". Has this been considered? i.e.:
Copy code
val foo = listOf<String>()
foo.filter(::isEmpty) // String::isEmpty is inferred for arguments of type String.() -> Boolean or (String) -> Boolean
👍 3