| 477 | return const_iterator(const_cast<DfLinkedList<L, I> *>(this)->begin()); |
| 478 | } |
| 479 | const_iterator cbegin() const |
| 480 | { |
| 481 | return begin(); |
| 482 | } |
| 483 | iterator end() |
| 484 | { |
| 485 | return iterator(static_cast<L *>(this), nullptr); |
no test coverage detected