Implemented interface member:
2 references to Equals
ILLink.RoslynAnalyzer (2)
src\tools\illink\src\ILLink.Shared\DataFlow\MaybeLattice.cs (2)
19
public override bool Equals(object? obj) => obj is Maybe<T> other &&
Equals
(other);
30
public static bool operator ==(Maybe<T> left, Maybe<T> right) => left.
Equals
(right);