V computeIfAbsent(K, func<V (F)>) { auto it = find(F); if(it == end()) it = insert(K, func(K)); return it->V; }