Click or drag to resize

ContainerHelperExceptK, V, W(DictionaryK, V, DictionaryK, W) Method

Creates a new dictionary containing all key/value pairs from a whose keys are not contained in b.

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public static Dictionary<K, V> Except<K, V, W>(
	Dictionary<K, V> a,
	Dictionary<K, W> b
)

Parameters

a  DictionaryK, V
A dictionary.
b  DictionaryK, W
Another dictionary of compatible key type to a.

Type Parameters

K
V
W

Return Value

DictionaryK, V
A new dictionary containing all elements from a, which are not in b.
See Also