Implemented interface member:
7 references to Equals
Microsoft.CodeAnalysis (5)
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1.cs (5)
115=> left.Equals(right); 118=> !left.Equals(right); 121=> left.GetValueOrDefault().Equals(right.GetValueOrDefault()); 124=> !left.GetValueOrDefault().Equals(right.GetValueOrDefault()); 593&& Equals(other);
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedListTest.cs (2)
570Assert.True(ImmutableSegmentedList<int>.Empty.Equals(ImmutableSegmentedList<int>.Empty)); 571Assert.False(ImmutableSegmentedList<int>.Empty.Add(3).Equals(ImmutableSegmentedList<int>.Empty.Add(3)));