8 references to WithComparers
System.Collections.Immutable (8)
System\Collections\Immutable\ImmutableDictionary.cs (5)
52
return ImmutableDictionary<TKey, TValue>.Empty.
WithComparers
(keyComparer, valueComparer);
91
return ImmutableDictionary<TKey, TValue>.Empty.
WithComparers
(keyComparer, valueComparer).AddRange(items);
148
return ImmutableDictionary<TKey, TValue>.Empty.
WithComparers
(keyComparer, valueComparer)
237
return existingDictionary.
WithComparers
(keyComparer, valueComparer);
240
return ImmutableDictionary<TKey, TValue>.Empty.
WithComparers
(keyComparer, valueComparer).AddRange(source);
System\Collections\Immutable\ImmutableDictionary_2.cs (3)
459
return this.
WithComparers
(keyComparer, _comparers.ValueComparer);
1049
/// <param name="avoidToHashMap"><c>true</c> when being called from <see cref="
WithComparers
(IEqualityComparer{TKey}, IEqualityComparer{TValue})"/> to avoid a stack overflow.</param>
1061
return other.
WithComparers
(this.KeyComparer, this.ValueComparer);