Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ValuesCollectionAccessor.cs
Go to the documentation of this file.
2
3internal sealed class ValuesCollectionAccessor<TKey, TValue> : KeysOrValuesCollectionAccessor<TKey, TValue, TValue> where TKey : notnull
4{
9
10 public override bool Contains(TValue item)
11 {
13 {
14 return immutableSortedDictionary.ContainsValue(item);
15 }
17 {
18 return immutableDictionaryInternal.ContainsValue(item);
19 }
20 throw new NotSupportedException();
21 }
22}
ValuesCollectionAccessor(IImmutableDictionary< TKey, TValue > dictionary)