204 class iterator :
public std::iterator<std::forward_iterator_tag, NXOpen::Implicit::ImplicitOperation *>
208 iterator() : m_context(nullptr), m_current(NULL_TAG)
233 return m_current == other.m_current && m_context == other.m_context;
238 return !operator == (other);
241 NXOPENCPP_IMPLICITEXPORT value_type operator * ()
const;
258 m_context = other.m_context;
259 m_current = other.m_current;
260 for (
int i = 0; i <
sizeof(m_state)/
sizeof(m_state[0]); i++)
261 m_state[i] = other.m_state[i];
263 NXOPENCPP_IMPLICITEXPORT
void next();
266 unsigned int m_state[8];