2 writes to next
Test.Utilities (2)
SmallDictionary.cs (2)
259
this.
next
= next;
588
head.
next
= newNext;
2 references to next
Test.Utilities (2)
SmallDictionary.cs (2)
262
public override Node Next =>
next
;
587
var newNext = new NodeLinked(key, value, head.
next
);