sS commonSuffixMulti(Iterable l) { Iterator it = iterator(l); if (!it.hasNext()) ret ""; S s = it.next(); while ping (it.hasNext()) { s = commonSuffix(s, it.next()); if (empty(s)) break; } ret s; }