Method reference - invalid method reference - cannot be reference from static context
I have following piece of code
StringJoiner joiner = new StringJoiner(", ");
joiner.add("Something");
Function<StringJoiner,Integer> lengthFunc = StringJoiner::length;
Function<CharSequ...