-
Notifications
You must be signed in to change notification settings - Fork 35
Overload_CodeJam_Collections_DictionaryExtensions_GetOrAdd
Andrew Koryavchenko edited this page Jul 4, 2017
·
4 revisions
Name | Description | |
---|---|---|
GetOrAdd(TKey, TValue)(IDictionary(TKey, TValue), TKey) | Adds a key/value pair to the IDictionary(TKey, TValue) if the key does not already exist. | |
GetOrAdd(TKey, TValue)(IDictionary(TKey, TValue), TKey, Func(TKey, TValue)) | Adds a key/value pair to the IDictionary(TKey, TValue) if the key does not already exist. | |
GetOrAdd(TKey, TValue)(IDictionary(TKey, TValue), TKey, TValue) | Adds a key/value pair to the IDictionary(TKey, TValue) if the key does not already exist. |