3 writes to Next
System.Text.RegularExpressions (3)
System\Text\RegularExpressions\Symbolic\DoublyLinkedList.cs (3)
76
_last.
Next
= other._first;
98
_last = _last.
Next
= new Node(elem, _last, null);
162
Next
= next;
1 reference to Next
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Symbolic\DoublyLinkedList.cs (1)
146
Debug.Assert(_first is not null && _last is not null && _first.Prev is null && _last.
Next
is null, "non-empty list");