Make an iterator equal to the beginning of the supplied list

Return TypeFunction nameArguments
hzList::Iter<OBJ>&hzList::Iter::operator=(hzList<OBJ>&,)

Declared and defined in file: hzTmplList.h

Function Logic:

0:START 1:m_pHandle items 2:Return *this

Function body:

hzList::Iter<OBJ>& hzList::Iter::operator= (hzList<OBJ>& sup)
       {
           //  Make an iterator equal to the beginning of the supplied list
           m_pHandle = sup.mx ;
           m_pCurr = m_pHandle ? m_pHandle->m_pList : 0;
           return *this ;
       }