| 72 | { |
| 73 | public: |
| 74 | StackListIterator(StackList& list) |
| 75 | : mCurrent{list.mFirst} |
| 76 | , mLast{list.mLast} |
| 77 | { |
| 78 | } |
| 79 | |
| 80 | constexpr StackListIterator& begin() noexcept { return *this; } |
| 81 | constexpr StackListIterator& end() noexcept { return *this; } |
nothing calls this directly
no outgoing calls
no test coverage detected