static bool allMultiSetsAreSingleKey(Iterable> l) { for (MultiSet set : unnull(l)) if (set.uniqueSize() != 1) false; true; }