// "Create method 'hello'" "true" import java.util.function.BiFunction; class X { void x() { BiFunction fn = (s, i) -> ((double)s.length())/i; BiFunction fn2 = fn.andThen(X::hello); } private static Character hello(Double aDouble) { return null; } }