MCPcopy Create free account
hub / github.com/MyGUI/mygui / next

Method next

MyGUIEngine/include/MyGUI_Enumerator.h:65–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63 }
64
65 bool next()
66 {
67 if (m_current == m_end)
68 return false;
69 if (m_first)
70 {
71 m_first = false;
72 return true;
73 }
74 ++m_current;
75 return m_current != m_end;
76 }
77
78 typename T::const_reference operator->() const
79 {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected