7 references to KeyComparer
Microsoft.CodeAnalysis.Workspaces (7)
ImmutableSegmentedHashSet`1.cs (6)
61
var set = new SegmentedHashSet<T>(self.
KeyComparer
) { value };
88
return Empty.WithComparer(self.
KeyComparer
);
200
return otherSet.WithComparer(self.
KeyComparer
);
205
return ImmutableSegmentedHashSet.CreateRange(self.
KeyComparer
, other);
240
return otherSet.WithComparer(self.
KeyComparer
);
260
if (Equals(self.
KeyComparer
, equalityComparer))
ImmutableSegmentedHashSet`1+Builder.cs (1)
67
_mutableSet = new SegmentedHashSet<T>(originalSet._set, originalSet.
KeyComparer
);