| 481 | return begin(); |
| 482 | } |
| 483 | iterator end() |
| 484 | { |
| 485 | return iterator(static_cast<L *>(this), nullptr); |
| 486 | } |
| 487 | const_iterator end() const |
| 488 | { |
| 489 | return const_iterator(const_cast<DfLinkedList<L, I> *>(this)->end()); |
nothing calls this directly
no test coverage detected