-
Notifications
You must be signed in to change notification settings - Fork 36
T_CodeJam_Collections_DictionaryExtensions
Andrew Koryavchenko edited this page Jun 17, 2018
·
10 revisions
Extensions for IDictionary(TKey, TValue)
System.Object
CodeJam.Collections.DictionaryExtensions
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static class DictionaryExtensions
VB
<ExtensionAttribute>
Public NotInheritable Class DictionaryExtensions
F#
[<AbstractClassAttribute>]
[<SealedAttribute>]
[<ExtensionAttribute>]
type DictionaryExtensions = class end
Name | Description | |
---|---|---|
![]() ![]() |
AddOrUpdate(TKey, TValue)(ConcurrentDictionary(TKey, TValue), TKey, Func(TKey, TValue)) | Adds a key/value pair to the ConcurrentDictionary(TKey, TValue) if the key does not already exist, or updates a key/value pair ConcurrentDictionary(TKey, TValue) by using the specified function if the key already exists. |
![]() ![]() |
AddOrUpdate(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, or updates a key/value pair IDictionary(TKey, TValue) by using the specified function if the key already exists. |
![]() ![]() |
AddOrUpdate(TKey, TValue)(IDictionary(TKey, TValue), TKey, Func(TKey, TValue), Func(TKey, TValue, TValue)) | Adds a key/value pair to the IDictionary(TKey, TValue) if the key does not already exist, or updates a key/value pair IDictionary(TKey, TValue) by using the specified function if the key already exists. |
![]() ![]() |
AddOrUpdate(TKey, TValue)(IDictionary(TKey, TValue), TKey, TValue, Func(TKey, TValue, TValue)) | Adds a key/value pair to the IDictionary(TKey, TValue) if the key does not already exist, or updates a key/value pair IDictionary(TKey, TValue) by using the specified function if the key already exists. |
![]() ![]() |
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. |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(ConcurrentDictionary(TKey, TValue), TKey) | Returns value associated with key, or default(TValue) if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(Dictionary(TKey, TValue), TKey) | Returns value associated with key, or default(TValue) if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(IDictionary(TKey, TValue), TKey) | Returns value associated with key, or default(TValue) if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(IReadOnlyDictionary(TKey, TValue), TKey) | Returns value associated with key, or default(TValue) if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(ConcurrentDictionary(TKey, TValue), TKey, Func(TKey, TValue)) | Returns value associated with key, or value returned by defaultValueFactory if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(ConcurrentDictionary(TKey, TValue), TKey, TValue) | Returns value associated with key, or defaultValue if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(Dictionary(TKey, TValue), TKey, Func(TKey, TValue)) | Returns value associated with key, or value returned by defaultValueFactory if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(Dictionary(TKey, TValue), TKey, TValue) | Returns value associated with key, or defaultValue if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(IDictionary(TKey, TValue), TKey, Func(TKey, TValue)) | Returns value associated with key, or value returned by defaultValueFactory if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(IDictionary(TKey, TValue), TKey, TValue) | Returns value associated with key, or defaultValue if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(IReadOnlyDictionary(TKey, TValue), TKey, Func(TKey, TValue)) | Returns value associated with key, or value returned by defaultValueFactory if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue)(IReadOnlyDictionary(TKey, TValue), TKey, TValue) | Returns value associated with key, or defaultValue if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(ConcurrentDictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult)) | Returns value associated with key, or default value if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(Dictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult)) | Returns value associated with key, or default value if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(IDictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult)) | Returns value associated with key, or default value if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(IReadOnlyDictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult)) | Returns value associated with key, or default value if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(ConcurrentDictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult), Func(TKey, TResult)) | Returns value associated with key, or value returned by defaultValueFactory if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(ConcurrentDictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult), TResult) | Returns value associated with key, or defaultValue if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(Dictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult), Func(TKey, TResult)) | Returns value associated with key, or value returned by defaultValueFactory if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(Dictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult), TResult) | Returns value associated with key, or defaultValue if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(IDictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult), Func(TKey, TResult)) | Returns value associated with key, or value returned by defaultValueFactory if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(IDictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult), TResult) | Returns value associated with key, or defaultValue if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(IReadOnlyDictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult), Func(TKey, TResult)) | Returns value associated with key, or value returned by defaultValueFactory if key does not exists in dictionary |
![]() ![]() |
GetValueOrDefault(TKey, TValue, TResult)(IReadOnlyDictionary(TKey, TValue), TKey, Func(TKey, TValue, TResult), TResult) | Returns value associated with key, or defaultValue if key does not exists in dictionary |