Implemented interface member:
7 references to Equals
Microsoft.CodeAnalysis (5)
ImmutableSegmentedList`1.cs (5)
113=> left.Equals(right); 116=> !left.Equals(right); 119=> left.GetValueOrDefault().Equals(right.GetValueOrDefault()); 122=> !left.GetValueOrDefault().Equals(right.GetValueOrDefault()); 591&& 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)));