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