Ok, consider this common idiom that most of us have used many times (I assume):
class FooBarDictionary
{
private Dictionary<String, FooBar> fooBars;
...
FooBar GetOrCreate(String key)
{
FooBar fooBar;
if (!fooBars.TryGetValue(key, out fooBar))
{
fooBar = new FooBar();
fooBars.Add(key, fooBar);
}
return fooBar;
}
}
Does it have any kind of established name?
(Yes, it's written in C#, but it can be "easily" transferred to C++. Hence that tag.)
std::map<T>::find()because that stupidstd::map<T>::operator[]()adds missing values and I just want to find those already there. Doing C#, I always seem to need "get-or-create" and have to write the above, since no operation as easy as that beautifulstd::map<T>::operator[]()is available. Isn't that strange? – sbi Sep 22 '09 at 20:26std::map<T>::operator[]()add missing values, it also replaces what was already there. In some cases that's fine, but not forGetOrCreate- then you must usestd::map<T>::find(). – Johann Gerell Sep 23 '09 at 7:08