Why do suppliers only support no-arg constructors?
If the default constructor is present, I can do this:
create(Foo::new)
But if th
That's just a limitation of the method reference syntax -- that you can't pass in any of the arguments. It's just how the syntax works.