- Notifications
You must be signed in to change notification settings - Fork66
Open
Description
I think thedocumentation regarding function conversion is wrong (at least the java code example) and doesn't compile.
To convert a java function to a scala function (like in baz) I have to write the following:
import static scala.compat.java8.JFunction.*;...// instead of return bar(functionConverters.asScalaFromFunction(f)) -> where should functionConverters come from?return bar(func(f)); ...