static bool worksOnAllExamples(F1 f, Iterable> examples) { for (Pair p : unnull(examples)) try { if (!eq(p.b, callF(f, p.a))) false; } catch e { printShortException(e); false; } true; }