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