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