On 20/09/18 17:32, Remi Forax wrote:
There is also a potential confusion between Function<A,B> fun() = Utils::bar; and Function<A,B> fun() -> Utils::bar;
You meant between Function<A,B> fun() = Utils::bar; and Function<A,B> fun = Utils::bar; ? (first is method body, second is variable initializer) Maurizio