| 271 | // Get an Iterator that starts at the tail |
| 272 | template<typename T> |
| 273 | typename LinkedList<T>::Iterator LinkedList<T>::back_iterator() const |
| 274 | { |
| 275 | return Iterator{ m_tail }; |
| 276 | } |
| 277 | |
| 278 | #endif //LINKEDLIST_H |
nothing calls this directly
no outgoing calls
no test coverage detected