static MultiMap pairsToMultiMap(Iterable> l) { new MultiMap mm; for (Pair p : unnull(l)) mm.put(p.a, p.b); ret mm; }