| 472 | } |
| 473 | |
| 474 | ListIterator<T> begin() const { |
| 475 | ListIterator<T> it; |
| 476 | |
| 477 | if(!num || !front){ |
| 478 | it.node = nullptr; |
| 479 | } else { |
| 480 | it.node = front; |
| 481 | } |
| 482 | |
| 483 | return it; |
| 484 | } |
| 485 | |
| 486 | ListIterator<T> end() const { |
| 487 | ListIterator<T> it; |
no outgoing calls
no test coverage detected