I’m curious if there’s a way to de-ambiguate a fun...
# getting-started
d
I’m curious if there’s a way to de-ambiguate a function reference like
::println
which has multiple definitions with different parameters without doing assignment to a variable. ie.
val stringPrintln: (String) -> Unit = println
assigns the right one but I’d like a means of calling
list.forEach(::println)