(int f, IntList r)
| 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) { |
nothing calls this directly
no outgoing calls
no test coverage detected