https://kotlinlang.org logo
d

damian

12/21/2016, 11:20 PM
if the function is open or abstract, the receiver type doesn't really matter -- e.g.
listOf<Foo>().map(Foo::toString)
is the same as
listOf<Foo>().map(Any::toString)