7 references to KeyComparer
Microsoft.CodeAnalysis.InteractiveHost (7)
src\Dependencies\Collections\Segmented\ImmutableSegmentedHashSet`1.cs (6)
114
var set = new SegmentedHashSet<T>(self.
KeyComparer
) { value };
140
return Empty.WithComparer(self.
KeyComparer
);
249
return otherSet.WithComparer(self.
KeyComparer
);
254
return ImmutableSegmentedHashSet.CreateRange(self.
KeyComparer
, other);
288
return otherSet.WithComparer(self.
KeyComparer
);
310
if (Equals(self.
KeyComparer
, equalityComparer))
src\Dependencies\Collections\Segmented\ImmutableSegmentedHashSet`1+ValueBuilder.cs (1)
70
_mutableSet = new SegmentedHashSet<T>(originalSet._set, originalSet.
KeyComparer
);