Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Contains< TKey, TValue >()

static bool System.Collections.Immutable.ImmutableDictionary< TKey, TValue >.Contains< TKey, TValue > ( this IImmutableDictionary< TKey, TValue > map,
TKey key,
TValue value )
inlinestatic
Type Constraints
TKey :notnull 

Definition at line 112 of file ImmutableDictionary.cs.

112 : notnull
113 {
114 Requires.NotNull(map, "map");
115 Requires.NotNullAllowStructs(key, "key");
117 }
bool ICollection< KeyValuePair< TKey, TValue > >. Contains(KeyValuePair< TKey, TValue > keyValuePair)

References System.Collections.Generic.Dictionary< TKey, TValue >.Contains(), System.key, and System.value.