Removes the last node at the end of the list
()
| 757 | |
| 758 | /** Removes the last node at the end of the list */ |
| 759 | pop(): T | null { |
| 760 | return this.remove(this.head.prev); |
| 761 | } |
| 762 | |
| 763 | /** Iterates through the list and removes nodes where filter returns true */ |
| 764 | prune(filter: (value: T) => boolean) { |
no test coverage detected