 | ContainerHelperUnionK, V(DictionaryK, V, DictionaryK, V) Method |
Creates a new dictionary and fills in all key/value pairs from
a and b.
If both dictionaries contain one key, the value from b takes precedence
(this way the common case a = a | map<int, int> { 7 -> 13 }; would update an existing entry
with key 7 to 13).
Namespace: de.unika.ipd.grGen.libGrAssembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntaxpublic static Dictionary<K, V> Union<K, V>(
Dictionary<K, V> a,
Dictionary<K, V> b
)
Parameters
- a DictionaryK, V
- A dictionary.
- b DictionaryK, V
- Another dictionary of compatible type to a.
Type Parameters
- K
- V
Return Value
DictionaryK,
VA new dictionary containing all elements from both parameters.
See Also