static bool allContainAllCharsIC(Collection l, S chars) { L charList = chars(upper(chars)); for (S s : unnull(l)) { HashSet set = asHashSet(charList); removeAll(set, chars(upper(s))); if (nempty(set)) false; } true; }