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