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