MCPcopy Create free account
hub / github.com/Apress/beginning-cpp20 / back_iterator

Method back_iterator

Exercises/NoModules/Chapter 17/Soln17_06/LinkedList.h:273–276  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

271// Get an Iterator that starts at the tail
272template<typename T>
273typename LinkedList<T>::Iterator LinkedList<T>::back_iterator() const
274{
275 return Iterator{ m_tail };
276}
277
278#endif //LINKEDLIST_H

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected