Click or drag to resize

ContainerHelperExceptChangedK, V, W(DictionaryK, V, DictionaryK, W, IGraph, INode, AttributeType) Method

Removes all key/value pairs from map a whose keys are contained in b.

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public static bool ExceptChanged<K, V, W>(
	Dictionary<K, V> a,
	Dictionary<K, W> b,
	IGraph graph,
	INode owner,
	AttributeType attrType
)

Parameters

a  DictionaryK, V
A dictionary to change.
b  DictionaryK, W
Another dictionary of compatible key type to a.
graph  IGraph
The graph containing the node containing the attribute which gets changed.
owner  INode
The node containing the attribute which gets changed.
attrType  AttributeType
The attribute type of the attribute which gets changed.

Type Parameters

K
V
W

Return Value

Boolean
A truth value telling whether at least one element was changed in a
See Also