7 references to KeyComparer
Microsoft.CodeAnalysis.Workspaces (7)
src\Dependencies\Collections\ImmutableSegmentedHashSet`1.cs (6)
112var set = new SegmentedHashSet<T>(self.KeyComparer) { value }; 138return Empty.WithComparer(self.KeyComparer); 247return otherSet.WithComparer(self.KeyComparer); 252return ImmutableSegmentedHashSet.CreateRange(self.KeyComparer, other); 286return otherSet.WithComparer(self.KeyComparer); 308if (Equals(self.KeyComparer, equalityComparer))
src\Dependencies\Collections\ImmutableSegmentedHashSet`1+ValueBuilder.cs (1)
68_mutableSet = new SegmentedHashSet<T>(originalSet._set, originalSet.KeyComparer);