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