7 references to ImmutableSegmentedDictionary
Microsoft.CodeAnalysis.Collections.Package (7)
Segmented\ImmutableSegmentedDictionary`2.cs (2)
75
public static readonly ImmutableSegmentedDictionary<TKey, TValue> Empty =
new
(new SegmentedDictionary<TKey, TValue>());
285
return new
ImmutableSegmentedDictionary
<TKey, TValue>(new SegmentedDictionary<TKey, TValue>(keyComparer));
Segmented\ImmutableSegmentedDictionary`2+PrivateMarshal.cs (4)
26
return new
ImmutableSegmentedDictionary
<TKey, TValue>(dictionary);
35
return new
ImmutableSegmentedDictionary
<TKey, TValue>(dictionary);
44
return new
ImmutableSegmentedDictionary
<TKey, TValue>(dictionary);
53
=> dictionary is not null ? new
ImmutableSegmentedDictionary
<TKey, TValue>(dictionary) : default;
Segmented\ImmutableSegmentedDictionary`2+ValueBuilder.cs (1)
231
_dictionary = new
ImmutableSegmentedDictionary
<TKey, TValue>(ReadOnlyDictionary);