`java.util.function.Function` has an `apply` metho...
# announcements
j
java.util.function.Function
has an
apply
method. How can I tell the kotlin compiler to call the
apply
method and not the extension function?
i
Member functions have precedence over extensions, so just call that
apply
with the function arguments.