6 references to SegmentedDictionary
Microsoft.Build.Framework (6)
ImmutableSegmentedDictionary`2.cs (4)
150
var dictionary = new
SegmentedDictionary
<TKey, TValue>(self._dictionary, self._dictionary.Comparer);
172
dictionary ??= new
SegmentedDictionary
<TKey, TValue>(self._dictionary, self._dictionary.Comparer);
214
var dictionary = new
SegmentedDictionary
<TKey, TValue>(self._dictionary, self._dictionary.Comparer);
237
var dictionary = new
SegmentedDictionary
<TKey, TValue>(self._dictionary, self._dictionary.Comparer);
ImmutableSegmentedDictionary`2+Builder.cs (1)
98
return _mutableDictionary ??= new
SegmentedDictionary
<TKey, TValue>(_dictionary._dictionary, _dictionary.KeyComparer);
SegmentedDictionary`2.cs (1)
101
:
this
(dictionary, null)