2 writes to next
Microsoft.CodeAnalysis (2)
Collections\SmallDictionary.cs (2)
152
this.
next
= next;
479
head.
next
= newNext;
2 references to next
Microsoft.CodeAnalysis (2)
Collections\SmallDictionary.cs (2)
155
public override Node Next =>
next
;
478
var newNext = new NodeLinked(key, value, head.
next
);