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

Method IntList

lab03/src/common/IntList.java:7–10  ·  view source on GitHub ↗
(int f, IntList r)

Source from the content-addressed store, hash-verified

5 public IntList rest;
6
7 public IntList(int f, IntList r) {
8 first = f;
9 rest = r;
10 }
11
12 /** Returns the ith item of this IntList. */
13 public int get(int i) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected