MCPcopy Create free account
hub / github.com/Berkeley-CS61B/skeleton-sp23 / IntNode

Method IntNode

lab03/src/timing/SLList.java:10–13  ·  view source on GitHub ↗
(Item i, IntNode n)

Source from the content-addressed store, hash-verified

8 public IntNode next;
9
10 public IntNode(Item i, IntNode n) {
11 item = i;
12 next = n;
13 }
14 }
15
16 /* The first item (if it exists) is at sentinel.next. */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected