3 writes to Prev
System.Text.RegularExpressions (3)
System\Text\RegularExpressions\Symbolic\DoublyLinkedList.cs (3)
77
other._first.
Prev
= _last;
116
_first.
Prev
= new(elem, null, _first);
161
Prev
= prev;
3 references to Prev
System.Text.RegularExpressions (3)
System\Text\RegularExpressions\Symbolic\DoublyLinkedList.cs (3)
117
_first = _first.
Prev
;
126
for (Node? current = _last; current is not null; current = current.
Prev
)
146
Debug.Assert(_first is not null && _last is not null && _first.
Prev
is null && _last.Next is null, "non-empty list");