static Map putOrCreate(Map map, A key, B value) { if (map == null) map = new HashMap; map.put(key, value); ret map; }