10 references to WithComparers
System.Collections.Immutable (10)
System\Collections\Immutable\ImmutableSortedDictionary.cs (5)
48return ImmutableSortedDictionary<TKey, TValue>.Empty.WithComparers(keyComparer, valueComparer); 87return ImmutableSortedDictionary<TKey, TValue>.Empty.WithComparers(keyComparer, valueComparer).AddRange(items); 144return ImmutableSortedDictionary<TKey, TValue>.Empty.WithComparers(keyComparer, valueComparer) 206return existingDictionary.WithComparers(keyComparer, valueComparer); 209return ImmutableSortedDictionary<TKey, TValue>.Empty.WithComparers(keyComparer, valueComparer).AddRange(source);
System\Collections\Immutable\ImmutableSortedDictionary_2.cs (5)
84return _root.IsEmpty ? this : Empty.WithComparers(_keyComparer, _valueComparer); 362return this.WithComparers(keyComparer, _valueComparer); 750? Empty.WithComparers(keyComparer, valueComparer) 783/// <param name="avoidToSortedMap"><c>true</c> when being called from <see cref="WithComparers(IComparer{TKey}, IEqualityComparer{TValue})"/> to avoid a stack overflow.</param> 849return other.WithComparers(this.KeyComparer, this.ValueComparer);