MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / StackListIterator

Method StackListIterator

StackList.h:74–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected