4 references to ImmutableSegmentedDictionary
Microsoft.CodeAnalysis.Collections.Package (4)
ImmutableSegmentedDictionary`2.cs (2)
73public static readonly ImmutableSegmentedDictionary<TKey, TValue> Empty = new(new SegmentedDictionary<TKey, TValue>()); 283return new ImmutableSegmentedDictionary<TKey, TValue>(new SegmentedDictionary<TKey, TValue>(keyComparer));
ImmutableSegmentedDictionary`2+PrivateMarshal.cs (1)
51=> dictionary is not null ? new ImmutableSegmentedDictionary<TKey, TValue>(dictionary) : default;
ImmutableSegmentedDictionary`2+ValueBuilder.cs (1)
229_dictionary = new ImmutableSegmentedDictionary<TKey, TValue>(ReadOnlyDictionary);