static Set concatListsToCISet(Collection> lists) { Set l = ciSet(); for (Collection list : lists) if (list != null) l.addAll(list); ret l; }