| Name | Description |
---|
  | UnionChangedK(DictionaryK, SetValueType, DictionaryK, SetValueType, IGraph, IEdge, AttributeType) |
Adds all key/value pairs from set b to a.
|
  | UnionChangedK(DictionaryK, SetValueType, DictionaryK, SetValueType, IGraph, INode, AttributeType) |
Adds all key/value pairs from set b to a.
|
  | UnionChangedK, V(DictionaryK, V, DictionaryK, V) |
Adds all key/value pairs from set/map b to a.
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).
|
  | UnionChangedK, V(DictionaryK, V, DictionaryK, V, IGraph, IEdge, AttributeType) |
Adds all key/value pairs from map b to a.
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).
|
  | UnionChangedK, V(DictionaryK, V, DictionaryK, V, IGraph, INode, AttributeType) |
Adds all key/value pairs from map b to a.
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).
|