5 references to ImmutableSortedDictionary
System.Collections.Immutable (5)
System\Collections\Immutable\ImmutableSortedDictionary_2.cs (5)
337return new ImmutableSortedDictionary<TKey, TValue>(_root, _count, _keyComparer, valueComparer);
343var result = new ImmutableSortedDictionary<TKey, TValue>(Node.EmptyNode, 0, keyComparer, valueComparer);
743: new ImmutableSortedDictionary<TKey, TValue>(root, count, keyComparer, valueComparer);
820return root.IsEmpty ? this.Clear() : new ImmutableSortedDictionary<TKey, TValue>(root, adjustedCountIfDifferentRoot, _keyComparer, _valueComparer);
882return new ImmutableSortedDictionary<TKey, TValue>(root, dictionary.Count, this.KeyComparer, this.ValueComparer);