<@U0C2CG716> I would like to know this as well. Y...
# getting-started
o
@dalexander I would like to know this as well. You can declare something like this
fun <T> disambiguate(a: (T) -> Unit) = a
and call it like this
disambiguate<String>(::println)
. But this is very specific to this case, and doesn't scale. Would be nice to have a general way to do this sort of thing without an intermediate variable.