Base:
method
GetHashCode
Microsoft.CodeAnalysis.CSharp.BoundDagTest.GetHashCode()
5 overrides of GetHashCode
Microsoft.CodeAnalysis.CSharp (5)
BoundTree\BoundDagEvaluation.cs (5)
144
public override int
GetHashCode
()
180
public override int
GetHashCode
() => base.GetHashCode() ^ this.Index;
203
public override int
GetHashCode
()
244
public override int
GetHashCode
() => base.GetHashCode() ^ this.StartIndex ^ this.EndIndex;
281
public override int
GetHashCode
() => Hash.Combine(base.GetHashCode(), this.Target.GetHashCode());
8 references to GetHashCode
Microsoft.CodeAnalysis.CSharp (8)
BoundTree\BoundDagEvaluation.cs (6)
21
Debug.Assert(other.
GetHashCode
() == this.
GetHashCode
());
146
return DecisionDagBuilder.SkipAllTypeEvaluations(this)?.
GetHashCode
() ?? 0;
180
public override int GetHashCode() => base.
GetHashCode
() ^ this.Index;
244
public override int GetHashCode() => base.
GetHashCode
() ^ this.StartIndex ^ this.EndIndex;
281
public override int GetHashCode() => Hash.Combine(base.
GetHashCode
(), this.Target.GetHashCode());
BoundTree\BoundDagTemp.cs (1)
49
return Hash.Combine(this.Type.GetHashCode(), Hash.Combine(this.Source?.
GetHashCode
() ?? 0, this.Index));
BoundTree\BoundDecisionDagNode.cs (1)
43
return Hash.Combine(n.Evaluation.
GetHashCode
(), RuntimeHelpers.GetHashCode(n.Next));