static Map keysToLinkedHashMap(Map map, Collection l) { Map out = linkedHashMap(); for (A a : unnull(l)) out.put(a, map.get(a)); ret out; }