static Pair syncGetOrCreate2(Map map, A key, Class c) ctex { synchronized(map) { B b = map.get(key); if (b == null) { map.put(key, b = c.newInstance()); ret pair(b, true); } ret pair(b, false); } } // TODO: syntax with function