In Java we have the Class::new syntax for constructor references. I know, there are callable references for methods, but how about constructors? A typical use c
Class::new
You can get a function instance for a constructor by simply using ::ClassName, as if it were a factory function.
::ClassName