()
| 770 | } |
| 771 | |
| 772 | clear() { |
| 773 | this.count = 0; |
| 774 | this.head.next = this.head as EmptyNode; |
| 775 | this.head.prev = this.head as EmptyNode; |
| 776 | } |
| 777 | |
| 778 | /** Returns the first item in the list, does not remove */ |
| 779 | first(): T | null { |
no outgoing calls
no test coverage detected