Implemented interface member:
3 references to Equals
illink (3)
Linker.Dataflow\ArrayValue.cs (1)
76
if (!otherArr.IndexValues.TryGetValue (kvp.Key, out ValueBasicBlockPair value) || !kvp.Value.
Equals
(value))
Linker.Dataflow\ValueNode.cs (2)
64
public override bool Equals (object? obj) => obj is ValueBasicBlockPair other &&
Equals
(other);
68
public static bool operator == (ValueBasicBlockPair left, ValueBasicBlockPair right) => left.
Equals
(right);