static IVF1 ivf1WithToString(S toString, IVF1 f) { ret f == null ?: new IVF1() { public void get(A a) { f.get(a); } toString { ret toString; } }; }