static void pcallFAll_minimalExceptionHandling(Collection l, O... args) { if (l != null) for (O f : cloneList(l)) pcallF_minimalExceptionHandling(f, args); } static void pcallFAll_minimalExceptionHandling(Iterator it, O... args) { while (it.hasNext()) pcallFAll_minimalExceptionHandling(it.next(), args); }