()
| 227 | |
| 228 | /// Constructs a new empty instance of `LinkedList`. |
| 229 | public LinkedList() { |
| 230 | voidLink = new Link<E>(null, null, null); |
| 231 | voidLink.previous = voidLink; |
| 232 | voidLink.next = voidLink; |
| 233 | } |
| 234 | |
| 235 | /// Constructs a new instance of `LinkedList` that holds all of the |
| 236 | /// elements contained in the specified `collection`. The order of the |