static void mmPut(Map> map, A a, B b) { L l = map.get(a); if (l == null) map.put(a, l = new L); l.add(b); }