| 160 | } |
| 161 | } |
| 162 | ListItem *List::at(int pos) |
| 163 | { |
| 164 | ListItem *temp = head.next; |
| 165 | |
| 166 | for (int i = 0; (i < pos) && temp; ++i, temp = temp->next) |
| 167 | { |
| 168 | } |
| 169 | |
| 170 | return temp; |
| 171 | } |
| 172 | |
| 173 | int List::find(ListItem *itemPtr) |
| 174 | { |
nothing calls this directly
no outgoing calls
no test coverage detected