| 469 | } |
| 470 | |
| 471 | iterator begin() |
| 472 | { |
| 473 | return iterator(static_cast<L *>(this), static_cast<L *>(this)->next); |
| 474 | } |
| 475 | const_iterator begin() const |
| 476 | { |
| 477 | return const_iterator(const_cast<DfLinkedList<L, I> *>(this)->begin()); |
nothing calls this directly
no test coverage detected