MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / LinkedList

Method LinkedList

Ports/CLDC11/src/java/util/LinkedList.java:229–233  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

addAllMethod · 0.95

Tested by

no test coverage detected